forked from john-wilson/john-wilson.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.html
117 lines (93 loc) · 3.25 KB
/
portfolio.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!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">
<title>Portfolio</title>
</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"></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 = "selfpic">
<img id = "pic1" src ="img/2.jpg">
<img id = "pic2" src="img/8.jpg">
</div>
<div id = "designprojects">
<h2>Design Projects</h2>
</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/7.jpg">
</figure>
<figure class="item">
<img src="img/6.jpg">
</figure>
<figure class="item">
<img src="img/5.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>
<div id = "photography">
<h2>Photography</h2>
</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/7.jpg">
</figure>
<figure class="item">
<img src="img/6.jpg">
</figure>
<figure class="item">
<img src="img/5.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>
</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>