blob: 54946d049a8bf9c221ff18de9a81365a6adc626c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>CS 1300 - UI/UX 2022</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="description" content="" />
<link rel="stylesheet" type="text/css" href="./css/reset.css" />
<link rel="stylesheet" href="https://use.typekit.net/hta7xia.css" />
<link rel="stylesheet" type="text/css" href="./css/style.css" />
<link rel="icon" href="./images/favicon.png" />
<script src="./js/main.js"></script>
<meta name="theme-color" content="" />
<meta property="og:title" content="" />
<meta property="og:description" content="" />
</head>
<body>
<div id="nav">
<div>
<div id="logo-wrapper">
<div class="hide-desktop" style="width: 0.5rem;"></div>
<a href="#welcome"><img src="./images/favicon.png" id="logo" /></a
><a
class="hide-desktop"
style="
text-decoration: none;
font-weight: 700;
color: #000;
margin-left: 0.25rem;
font-family: classico-urw, sans-serif;
"
href="#welcome"
><span>CSCI 1300</span></a
>
<div class="hide-desktop" style="flex: 1"></div>
<button class="hide-desktop" style="flex: none; margin-right: 1rem;" onclick="toggleNav(!isNavOpen);">Toggle Nav</button>
</div>
</div>
<hr />
<div id="business-hours">
<h3>Business Hours</h3>
<p>T/Th 1-2:20pm</p>
<p>CIT Room XXX</p>
<div><a class="link" href="https://example.com">Zoom Link</a></div>
</div>
<hr />
<div id="nav-links">
<a class="button" href="#xxx">Weekly Specials</a>
<a class="link" href="#xxx">Course Schedule</a>
<a class="link" href="#xxx">Course Info</a>
<a class="link" href="#xxx">Kitchen Staff</a>
</div>
</div>
<div id="content">
<div id="welcome">
<div>
<p style="font-size: 2rem">Welcome to</p>
<h1>CSCI 1300</h1>
<p style="font-size: 2rem">User Interfaces and User Experience</p>
</div>
</div>
<div id="xxx" style="height: 100vh">content here</div>
</div>
</body>
</html>
|