-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
51 lines (36 loc) · 1.18 KB
/
gallery.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
<!-- TRANSFORMATIONS -->
<!DOCTYPE html>
<head>
<title>Transformations — Gallery</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="images/favicon.ico?" type="image/x-icon">
</head>
<body>
<!-- NAVIGATION -->
<nav>
<a href="index.html">Transformations</a>
<a href="gallery.html">Gallery</a>
</nav>
<!-- GALLERY -->
<div class="gallery-grid">
<div class="gallery-item">
<img src="images/leaf-1.png" alt="a leaf">
</div>
<div class="gallery-item">
<img src="images/leaf-2.png" alt="a leaf">
</div>
<div class="gallery-item">
<img src="images/leaf-3.png" alt="a leaf">
</div>
<div class="gallery-item">
<img src="images/leaf-closeup.jpg" alt="close view of a leaf">
</div>
<div class="gallery-item">
<img src="images/leaf-skeleton.png" alt="veins of a leaf">
</div>
<div class="gallery-item">
<img src="images/leaves.png" alt="various leaves">
</div>
</div>
</body>