-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (45 loc) · 1.31 KB
/
index.html
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
<!--
Fonts Used:
Playfair Display
Raleway
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--Import Google Fonts: PlayFair Display & Raleway-->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Raleway&display=swap" rel="stylesheet">
<!--Import CSS-->
<link rel="stylesheet" href="style.css">
<title>Responsive Nav Bar (Cee.Studio)</title>
</head>
<body>
<!--Nav Bar-->
<nav>
<input type="checkbox" id="toggle">
<label for="toggle" id="open">=</label>
<label for="toggle" id="close">×</label>
<div class="links">
<a href="#" id="active">Home</a>
<a href="#">Students</a>
<a href="#">Educators</a>
<a href="#">Benefits</a>
<a href="#">Pricing</a>
<a href="#">SDK</a>
<a href="#">Help</a>
</div>
<span>LOGO</span>
</nav>
<!--Main Page-->
<main>
<!--Content to be filled-->
</main>
<!--Footer-->
<footer>
© Stensal Inc.
</footer>
</body>
</html>