-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaboutme.html
More file actions
38 lines (38 loc) · 1.12 KB
/
aboutme.html
File metadata and controls
38 lines (38 loc) · 1.12 KB
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 lang="en">
<head>
<link rel="stylesheet" type="text/css" href="https://necolas.github.io/normalize.css/latest/normalize.css">
<link href="https://fonts.googleapis.com/css?family=Libre+Baskerville:400,400i|Montserrat" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./CSS/master.css">
<meta charset="utf-8">
<title>About Me</title>
</head>
<body>
<header>
<div class="container">
<div class="logo">
<a href="./aboutme.html">
<img src="../jcphotologo.png" alt="Logo">
</a>
</div>
<nav>
<ul>
<li><a href="./city.html">City</a></li>
<li><a href="./nature.html">Nature</a></li>
<li><a href="./portraits.html">Portraits</a></li>
<li><a href="./aboutme.html">About</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main>
<h1>About Me</h1>
<p>I am a Pre-Junior Interactive Digital Media Major at Drexel University. In my spare time I like to take photos of the city, nature, and people. This is a site dedicated to those photos.
</p>
</main>
<footer>
<p>© 2016 jakeculpphoto.com</p>
</footer>
</body>
</html>