-
Notifications
You must be signed in to change notification settings - Fork 0
/
art.html
167 lines (142 loc) · 4.49 KB
/
art.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- If IE use the latest rendering engine -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Set the page to the width of the device and set the zoom level -->
<meta name="viewport" content="width = device-width, initial-scale = 1">
<link rel="stylesheet" href="css/foundation.css" />
<link rel="stylesheet" href="css/app.css" />
<title>John Moreland</title>
</head>
<body>
<section id="wrapper row">
<!-- LEFT BAR -->
<div id="leftbar" class="column small-12 large-3 text-center" >
<div id="leftbar-content" class="row small-up-1 text-center">
<!-- NAME -->
<div id="name" class="column">
<h4> <strong>John Moreland</strong></h4>
<h5 > Robotics + Mechanical Engineer </h5>
</div>
<!-- SOCIAL ICONS -->
<div id="social" class="column">
<a target="_blank" href="http://www.linkedin.com/in/jmore" >
<img src="./img/social/linkedin.svg" class="social-ico">
</a>
<a target="_blank" href="mailto:[email protected]" >
<img src="./img/social/mail.svg" class="social-ico">
</a>
<a target="_blank" href="https://twitter.com/john_moreland" >
<img src="./img/social/twitter.svg" class="social-ico">
</a>
</div>
<!-- NAVIGATION -->
<div id="nav" class="column">
<ul class=" menu vertical small-centered text-center navlist">
<li class=""><a href='index.html' >
<h4 id="navtext">projects</h4></a></li>
<li class=""><a href='experience.html'> <h4 id="navtext">experience</h4></a></li>
<li class=""><a target="_blank" href='resume.pdf'><h4 id="navtext">resume</h4></a></li>
<li class="current"><a href=''>
<h4 id="navtext">art</h4></a></li>
</ul>
</div>
<!-- PHOTO -->
<div class="column small-hidden">
</div>
</div>
</div> <!-- END of LEFT BAR-->
<!-- CONTENT -->
<div id="content" class="column small-12 large-9" >
<!-- TITLE -->
<div class="title row small-up-1">
<div class="column text-center">
<h3> ART </h3>
</div>
</div>
<div class="row small-up-2 medium-up-4" data-equalizer data-equalize-by-row="true">
<!-- BIKE -->
<div class="column" data-equalizer-watch>
<a >
<div class="card">
<img src="./img/screenprint/bike.jpg">
<div class="card-section">
<!-- <h5 class="text-center project-title"> </h5> -->
</div>
</div>
</a>
</div>
<!-- ART -->
<div class="column" data-equalizer-watch>
<a >
<div class="card">
<img src="./img/screenprint/art.jpg">
<div class="card-section">
<!-- <h5 class="text-center project-title"> </h5> -->
</div>
</div>
</a>
</div>
<!-- KEITH HARING -->
<div class="column" data-equalizer-watch>
<a >
<div class="card">
<img src="./img/screenprint/keithharing.jpg">
<div class="card-section">
<!-- <h5 class="text-center project-title"> </h5> -->
</div>
</div>
</a>
</div>
<!-- LIFE IS GOOD -->
<div class="column" data-equalizer-watch>
<a >
<div class="card">
<img src="./img/screenprint/lifeisgood.jpg">
<div class="card-section">
<!-- <h5 class="text-center project-title"> </h5> -->
</div>
</div>
</a>
</div>
<!-- CALM ON WHITE -->
<div class="column" data-equalizer-watch>
<a >
<div class="card">
<img src="./img/screenprint/calmonwhite.jpg">
<div class="card-section">
<!-- <h5 class="text-center project-title"> </h5> -->
</div>
</div>
</a>
</div>
<!-- CALM ON BLACK -->
<div class="column" data-equalizer-watch>
<a >
<div class="card">
<img src="./img/screenprint/calmonblack.jpg">
<div class="card-section">
<!-- <h5 class="text-center project-title"> </h5> -->
</div>
</div>
</a>
</div>
</div>
</div><!-- END of CONTENT-->
</section>
<script src="js/vendor/jquery.min.js"></script>
<script src="js/vendor/what-input.min.js"></script>
<script src="js/foundation.min.js"></script>
<script src="js/app.js"></script>
<!-- <script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-72959606-1', 'auto');
ga('send', 'pageview');
</script> -->
</body>
</html>