-
Notifications
You must be signed in to change notification settings - Fork 191
/
about.html
35 lines (33 loc) · 1.02 KB
/
about.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
<!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>About Me</h1>
<p>
I'm from Connecticut. I'm passionate about computer science. I hope to create my own application software to change the world.
</p>
<img src="images/education_icons_IF-02-512.png" alt="an icon of a student with a mortarboard" />
</div>
<footer>
<p>© 2021 Sammy Student |
<a href="https://github.com/prof-rossetti/student-site">source code</a>
</p>
</footer>
</body>
</html>