-
Notifications
You must be signed in to change notification settings - Fork 3
/
menu.html
46 lines (36 loc) · 1.41 KB
/
menu.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="noindex,nofollow">
<title>Menu</title>
<link rel="shortcut icon" href="images/favicon.png" />
<link rel="stylesheet" href="style.css" />
<link rel='stylesheet' href="fonts/pt-sans/pt-sans.css" type='text/css' media='all' />
</head>
<body>
<div class="header">
<p class="sitelogo"><a class="sitelogo" href="/index.html" rel="home">MyLight.Website</a></p>
<p class="menu"><a class="menubtn" href="javascript:history.back()">Close</a></p>
</div>
<div class="main">
<!-- *** START LINKS *** -->
<h1>Menu</h1>
<ul class="menu">
<li class="nav"><a href="index.html">Home</a></li>
<li class="nav"><a href="start.html">Start Here</a></li>
<li class="nav"><a href="downloads.html">Downloads</a></li>
<li class="nav"><a target="blank" href="https://kevquirk.com">My Blog</a></li>
<li class="nav"><a target="blank" href="https://kevquirk.com/contact">Contact Me</a></li>
</ul>
<!-- *** END LINKS *** -->
<!-- *** Start Footer *** -->
<div class="footer">
<p>MyLight.Website was created by <a href="https://kevquirk.com">Kev Quirk</a>.<br>
All work licensed under <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0</a> unless otherwise stated.</p>
</div>
<!-- *** End Footer *** -->
</div>
</body>
</html>