-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (84 loc) · 2.97 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>kyle snow schwartz | human. traveler.</title>
<link rel="stylesheet" type="text/css" href="css/normalize.css">
<link href='https://fonts.googleapis.com/css?family=Changa+One|Open+Sans:400italic,700italic,400,700,800' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/responsive.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header>
<a href="index.html" id="logo">
<h1>kyle snow schwartz</h1>
<h2>human. traveler.</h2>
</a>
<nav>
<ul>
<li><a href="index.html" class="selected">portfolio</a></li>
<li><a href="about.html">about</a></li>
<li><a href="contact.html">contact</a></li>
</ul>
</nav>
<div id="nested">
<ul>
<li><a href="index.html" class="selected">portfolio</a></li>
<li><a href="contact.html">testing2</a></li>
<li><a href="contact.html">testing3</a></li>
<li><a href="contact.html">testing4</a></li>
</ul>
</div>
</header>
<div id="wrapper">
<section>
<ul id="gallery">
<li>
<a href="img/grumpy chess.jpg">
<img src="img/grumpy chess.jpg" alt="Grumpy Chess">
<p>Grumpy Chess</p>
</a>
</li>
<li>
<a href="img/mountain moody.jpg">
<img src="img/mountain moody.jpg" alt="untitled">
<p>untitled</p>
</a>
</li>
<li>
<a href="img/new years moody.jpg">
<img src="img/new years moody.jpg" alt="Happy New Year">
<p>Happy New Year</p>
</a>
</li>
<li>
<a href="img/pink landscape.jpg">
<img src="img/pink landscape.jpg" alt="untitled">
<p>untitled</p>
</a>
</li>
<li id=sheep>
<a href="img/sheep watching.jpg">
<img src="img/sheep watching.jpg" alt="untitled">
<p>untitled</p>
</a>
</li>
<li>
<a href="img/mat and oscar.jpg">
<img src="img/mat and oscar.jpg" alt="Sisterly Love">
<p>Sisterly Love</p>
</a>
</li>
</ul>
</section>
<footer>
<a href="http://twitter.com/snow_schwartz"><img src="img/twitter-wrap.png" alt="twitter logo" class="social"> </a>
<a href="http://facebook.com/kylesnowschwartz"><img src="img/facebook-wrap.png" alt="facebook logo" class="social"></a>
<p>© 2014 kyle snow schwartz.</p>
</footer>
</div>
<script src="https://code.jquery.com/jquery-1.11.0.min.js" type="text/javascript" charset="utf-8"></script>
<script src="jquery.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>