-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (55 loc) · 2.08 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.00" />
<meta name="description" content="a virtual corndog bar" />
<meta name="keywords" content="corndog, corndog bar, virtual corndog bar, corndogs" />
<meta name="author" content="BatemaDevelopment, Lukas Batema" />
<link type="text/css" rel="stylesheet" href="src/css/theme.css" />
<title>the virtual corndog bar - home</title>
</head>
<body>
<header>
<h1>the virtual corndog bar</h1>
<nav aria-label="header-bar" id="bar">
<a href="javascript:void(0);">home</a>
<a href="pages/user/signup.html">account</a>
<a href="javascript:void(0);">ur virtual corndog bar</a>
<a href="javascript:void(0);">ur corndog bar stats</a>
</nav>
<nav aria-label="menu" id="menu">
<div id="hamburger">
<a id="hamburger-icon" draggable="false" href="javascript:void(0);">🍔</a> <!-- 🍔 is the HTML Entity-->
<div id="main-menu">
<a href="javascript:void(0);">home</a>
<a href="pages/user/signup.html">account</a>
<a href="javascript:void(0);">ur virtual corndog bar</a>
<a href="javascript:void(0);">ur corndog bar stats</a>
</div>
<div id="legal-menu">
<a href="javascript:void(0);">Privacy Policy</a>
<a href="javascript:void(0);">Terms of Service</a>
<a href="javascript:void(0);">Code of Conduct</a>
</div>
</div>
</nav>
</header>
<main>
<div class="flex">
<p>
welcome to the virtual corndog bar!
to get started, please use the
"login or signup tab". have fun!
</p>
</div>
</main>
<footer>
<nav aria-label="footer-legal" id="legal">
<a href="javascript:void(0);">Privacy Policy</a>
<a href="javascript:void(0);">Terms of Service</a>
<a href="javascript:void(0);">Code of Conduct</a>
</nav>
</footer>
</body>
</html>