-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.html
More file actions
58 lines (57 loc) · 2.14 KB
/
Copy pathabout.html
File metadata and controls
58 lines (57 loc) · 2.14 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html>
<head>
<title>Stephanie</title>
<link type="text/css" rel="stylesheet" href="style.css">
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Open+Sans">
<link href="https://fonts.googleapis.com/css?family=Pacifico" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Homemade+Apple" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<header class="fixednav">
<nav>
<label for="drop" class="toggle"><b id="menubutton">+</b></label>
<input type="checkbox" id="drop" />
<ul class="menu">
<li><a href="index.html">home</a></li>
<li>
<label for="drop-1" class="toggle"><a href="#">Images</a>+</label>
<a href="#">Images</a>
<input type="checkbox" id="drop-1" />
<ul>
<li><a href="watergate.html">Water</a></li>
<li><a href="sky.html">Sky</a></li>
<li><a href="flowers.html">Flowers</a></li>
<li><a href="nature.html">Nature</a></li>
<li><a href="cityscapes.html">Cityscapes</a></li>
<li><a href="people.html">People</a></li>
</ul>
</li>
<li>
<label for="drop-2" class="toggle"><a href="#">about us</a>+</label>
<a href="#">about us</a>
<input type="checkbox" id="drop-2" />
<ul>
<li><a href="about.html">about us</a></li>
<li><a href="faq.html">faq</a></li>
</ul>
</li>
<li><a href="submit.html">Submit</a></li>
</ul>
</nav>
</header>
<a name="top"></a>
<div class="contents">
<div class="imgpagewrapper">
<div class="profilecontainer">
<img class ="profile" src="images/profile.jpg" alt="Photographer" />
</div>
<p class="writeup">That's not actually me in that photo... And I'm not actually a photographer. Well, not a good one... But I'd like to be because I think that would be really neat.</p>
<p class="signature">Stephanie Mah</p>
</div>
<div class="top"><a class="top" href="#top">^</a></div>
</div>
</body>
</html>