-
Notifications
You must be signed in to change notification settings - Fork 191
/
index.html
43 lines (37 loc) · 1004 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Sammy Student | Work hard, play hard</title>
<link rel="stylesheet" href="stylesheets/sammy-style.css">
</head>
<body>
<header>
<p><a href="index.html">Sammy Student</a></p>
<nav>
<ul>
<li><a href="about.html">About</a></li>
<li><a href="activities.html">Activities</a></li>
<li><a href="experience.html">Experience</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<div class="page">
<h1>Sammy Student</h1>
<p>Welcome to my site.</p>
</div>
<footer>
<p>© 2021 Sammy Student |
<a href="https://github.com/prof-rossetti/student-site">source code</a>
</p>
</footer>
<script type="text/javascript">
//
// FYI: this is JavaScript!
//
var myMessage = "Hello World"
console.log(myMessage)
</script>
</body>
</html>