-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (38 loc) · 1.47 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="assets/stylesheets/main.css">
<link href="https://fonts.googleapis.com/css?family=Lato|Open+Sans" rel="stylesheet">
<link rel="shortcut icon" href="assets/images/favicon.ico" type="image/x-icon">
<title>Chris' Homepage</title>
</head>
<body>
<div class="container" id="pageBody">
<header class="container" id="top">
<h1>
<a href="index.html" id="mainName">Chris Miller</a>
</h1>
<!--- Navigation Bar !-->
<nav>
<a class="btn btn-alt" href="index.html">Homepage</a>
<a class="btn btn-alt" href="pages/about.html">About Me</a>
<a class="btn btn-alt" href="pages/courses.html">Coursework</a>
<a class="btn btn-alt" href="pages/extra.html">Extracurricular Work</a>
<a class="btn btn-alt" href="pages/weather.html">Weather</a>
</nav>
</header>
<section class="curveBox container" id="mainIntro">
</section>
<!-- Sets main welcome box text based on if the user has visited the site before !-->
<script src = "assets/scripts/welcome.js"></script>
<footer class="container">
<small>
Content produced by Chris Miller '20 <br>
Questions? <a href="mailto:Chris.20@dartmouth.edu">Email me!</a> <br><br>
<a href=#top>Navigate to top</a>
</small>
</footer>
</div>
</body>
</html>