-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (36 loc) · 940 Bytes
/
Copy pathindex.html
File metadata and controls
44 lines (36 loc) · 940 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>KDM | Main Page</title>
<link href="/node_modules/normalize.css/normalize.css" rel="stylesheet">
<link href="styles/style.css" rel="stylesheet">
</head>
<body>
<div class="hero-image">
<span><a class="nav-icon" onclick="menu()"><div class= mobile-nav id="hamburger">☰</div></a></span>
<div class="hero-text">
<h1>Kingdom Death | Monster</h1>
</div>
</div>
<nav class="mobile-nav">
<div id="nav-links">
<a href="index.html">Home</a>
<a href="glossary.html">Glossary</a>
</div>
</nav>
<nav class="tablet-nav">
<div id="tablet-links">
<a href="index.html">Home</a>
<a href="glossary.html">Glossary</a>
</div>
</nav>
<script src="scripts/script.js"></script>
<main>
</main>
<footer>
<p>Project By Tarrayna Smith</p>
</footer>
</body>
</html>