-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
84 lines (81 loc) · 2.92 KB
/
gallery.html
File metadata and controls
84 lines (81 loc) · 2.92 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
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html>
<head>
<title>Website | Gallery</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link rel="stylesheet" href="css/font-awesome-4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/homebarV2.css">
<link rel="stylesheet" type="text/css" href="css/cards.css">
<link rel="stylesheet" type="text/css" href="css/gallery.css">
</head>
<body>
<header class="homebar">
<img class="logo" src="resources/logo.png">
<p class="text link">www.website.com</p>
<nav>
<label for="hammenu" class="fa fa-bars text hamburgerbutton" aria-hidden="true"></label>
<input class="hammenu" id="hammenu" type="checkbox">
<ul>
<li>
<a href="home.html" class="text">Home</a>
</li>
<li>
<a href="#" class="text">About</a>
<ul>
<li><a href="about-marty.html" class="text">Marty</a></li>
<li><a href="about-ymke.html" class="text">Ymke</a></li>
</ul>
</li>
<li>
<a href="gallery.html" class="text">Gallery</a>
</li>
<li>
<a href="contact.html" class="text">Contact</a>
</li>
</ul>
</nav>
</header>
<div class="homebar-reserve"></div>
<div class="flex-container">
<article class="card-container">
<img class="imgpost" src="resources/icon1.png">
<div class="head">
<p class="title">Star Wars #1</p>
</div>
</article>
<article class="card-container">
<img class="imgpost" src="resources/icon2.png">
<div class="head">
<p class="title">Star Wars #2</p>
</div>
</article>
<article class="card-container">
<img class="imgpost" src="resources/icon3.png">
<div class="head">
<p class="title">Star Wars #3</p>
</div>
</article>
<article class="card-container">
<img class="imgpost" src="resources/icon4.png">
<div class="head">
<p class="title">Star Wars #4</p>
</div>
</article>
<article class="card-container">
<img class="imgpost" src="resources/icon5.png">
<div class="head">
<p class="title">Star Wars #5</p>
</div>
</article>
</div>
<div class="footer-reserve"></div>
<footer class="footer">
<p>
© Marty & Ymke 2017
</p>
<a href="overview.html">Overview</a>
</footer>
</body>
</html>