-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (37 loc) · 1.1 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
<!DOCTYPE html>
<html>
<head>
<!--Browser Formatting-->
<title>Welcome To My Page</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width; initial-scale=1.0">
<!--End-->
<!--Load Stylesheet-->
<link rel="stylesheet" type="text/css" href="css/main.css">
<!--End-->
</head>
<!--Load Scripts-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!--End-->
<body style="background-color:#009999; font-family: Helvetica;">
<!--Proper Header-->
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about.html">About</a></li>
<li><a href="/blog.html">Blog</a></li>
<li><a href="/sitemap.html">Sitemap</a></li>
<li><a href="/thanks.html">Thanks</a></li>
</ul>
</nav>
<!--End-->
<!--Proper Footer-->
<footer>
<ul>
<li><a href="https://github.com/mariomasta64/">My Github</a></li>
<li><a href="mailto:[email protected]">Contact Me</a></li>
</ul>
</footer>
<!--End-->
</body>
</html>