-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
74 lines (63 loc) · 2.25 KB
/
Copy pathgallery.html
File metadata and controls
74 lines (63 loc) · 2.25 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Andrew Chapman's Profile</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/responsive.css">
<link href='https://fonts.googleapis.com/css?family=Montserrat:400,700|Fjalla+One' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="main-nav">
<ul class="nav">
<li class="name">Andrew Chapman</li>
<li><a href="index.html">Home</a></li>
<li><a href="experience.html">Experience</a></li>
<li><a href="gallery.html" class="selected">Gallery</a></li>
</ul>
</div>
<header>
<img src="images/lion.png" alt="Abstract Lion Avatar" class="profile-image">
<h1 class="tag name">Andrew's Gallery</h1>
<p class="tag location">Things that inspire me!</p>
</header>
<main class="flex">
<ul class="gallery">
<li>
<img src="images/planet.jpg" alt="Abstract Planet Scene 1">
<p>Abstract Planet Scene</p>
</li>
<li>
<img src="images/planet2.jpg" alt="Abstract Planet Scene 2 - Header Image">
<p>Header Planet Scene</p>
</li>
<li>
<img src="images/spacex1.jpg" alt="Space X Launch">
<p>Space X Launch</p>
</li>
<li>
<img src="images/spacexdragon.jpg" alt="Space X Dragon Attached To The International Space Station">
<p>Space X Dragon attached to ISS</p>
</li>
<li>
<img src="images/vr.jpg" alt="Virtual Reality">
<p>Virtual Reality</p>
</li>
<li>
<img src="images/gaming.jpg" alt="Planet 1">
<p>Gaming</p>
</li>
</ul>
</main>
<footer>
<ul>
<li><a href="https://twitter.com/Memanoth" class="social twitter">Twitter</a></li>
<li><a href="http://www.linkedin.com/in/abchapman" class="social linkedin">LinkedIn</a></li>
<li><a href="https://github.com/Memanoth" class="social github">Github</a></li>
</ul>
<p class="copyright">Copyright 2016, Andrew Chapman</p>
</footer>
</body>
</html>