forked from john-wilson/john-wilson.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
93 lines (71 loc) · 2.6 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
88
89
90
91
92
93
<!DOCTYPE html>
<!--Aaron Jones helped me with the design of this code-->
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>John Wilson</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.2/normalize.css">
<link rel="stylesheet" type="text/css" href="css/styles.css">
<link rel="stylesheet" type="text/css" href="css/gallery.css">
<link href='http://fonts.googleapis.com/css?family=Amatic+SC:400,700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/gallery.theme.css">
<link rel="stylesheet" href="css/gallery.min.css">
</head>
<body>
<div class="navmenu">
<div class="container">
<div class="menu-left">
<ul>
<li><a id="home" href="index.html">Home</a></li>
<li><a id="bio" href="bio.html">bio</a></li>
</ul>
</div>
<div id="logo-container">
<div class="logo"><a href="index.html"></a></div>
</div>
<div class ="menu-right">
<ul>
<li><a id ="portfolio" href="portfolio.html">Portfolio</a></li>
<li><a id = "contact" href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</div>
<div class="gallery items-3">
<div id="item-1" class="control-operator"></div>
<div id="item-2" class="control-operator"></div>
<div id="item-3" class="control-operator"></div>
<figure class="item">
<img src="img/1.jpg">
</figure>
<figure class="item">
<img src="img/4.jpg">
</figure>
<figure class="item">
<img src="img/3.jpg">
</figure>
<div class="controls">
<a href="#item-1" class="control-button">•</a>
<a href="#item-2" class="control-button">•</a>
<a href="#item-3" class="control-button">•</a>
</div>
</div>
<blockquote>
<p>The only way to do great work is to love what you do. </p>
<em>-Steve Jobs</em>
</blockquote>
<div class = "logo2">
<img src="img/logob.png">
</div>
</body>
<footer>
<!--From simplesharebuttons.com-->
<ul class="share-buttons">
<li><a href="https://www.facebook.com/sharer/sharer.php?u=&t=" target="_blank" title="Share on Facebook"><img src="images/flat_web_icon_set/color/Facebook.png"></a></li>
<li><a href="https://twitter.com/intent/tweet?source=&text=:%20" target="_blank" title="Tweet"><img src="images/flat_web_icon_set/color/Twitter.png"></a></li>
<li><a href="http://www.linkedin.com/shareArticle?mini=true&url=&title=&summary=&source=" target="_blank" title="Share on LinkedIn"><img src="images/flat_web_icon_set/color/LinkedIn.png"></a></li>
</ul>
</footer>
</html>