-
Notifications
You must be signed in to change notification settings - Fork 191
/
contact.html
38 lines (36 loc) · 970 Bytes
/
contact.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
<!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>Contact</h1>
<ul>
<li>Twitter link</li>
<li>LinkedIn link</li>
<li>
<a href="mailto:sammystudent@myschool.edu"> Send me an email</a>
</li>
</ul>
</div>
<footer>
<p>© 2021 Sammy Student |
<a href="https://github.com/prof-rossetti/student-site">source code</a>
</p>
</footer>
</body>
</html>