-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallerypage3.html
88 lines (64 loc) · 3.55 KB
/
gallerypage3.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
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset="utf-8">
<title>Project and Play: Gallery </title>
<meta name="viewport" content="width=device-width, initial-scale =1.0" />
<link rel = "stylesheet" href = "./styles/gallerycss.css" />
<link rel = "icon" href = "favicon.ico"/>
</head>
<header>
<img src = "Favicon.png" class = "logo" alt = "Project and Play, Logo, blue, and pink."/>
<h1>Project and Play</h1>
<p>A bit of eye candy.</p>
</header>
<nav>
<ul>
<li class = "button"><a href = "index.html">ABOUT</a></li>
<li class = "button"><a href = "gallerypage1.html">GALLERY</a></li>
<li class = "button"><a href = "meettheteam.html">MEET THE TEAM</a></li>
</ul>
</nav>
<main>
<h2>Explore The Gallery</h2>
<section class = "bar">
<!-- Got these arrows from a website called feather icons. -->
<a href="gallerypage2.html"><img src = "root/buttons/arrow-left.svg" alt = "Go back a page."/></a>
</section>
<section class ="row">
<section class ="column">
<img src = "root/gallery/Image (51).jpg" alt = "Rosha Murphy with purple background"/>
<img src = "root/gallery/Image (55).jpg" alt = "Zach Moynihan with lemon background."/>
<img src = "root/gallery/Image (56).jpg" alt = "Zach Moynihan with lemon background."/>
<img src = "root/gallery/Image (57).jpg" alt = "Zach Moynihan with lemon background."/>
<img src = "root/gallery/Image (58).jpg" alt = "Zach Moynihan with green background."/>
<img src = "root/gallery/Image (59).jpg" alt = "Amy, Wiktoria, Aoife and Flora with pink fluid background."/>
<img src = "root/gallery/Image (71).jpg" alt = "Ben and Evan, with red and black background." />
</section>
<section class ="column">
<img src = "root/gallery/Image (61).jpg" alt = "Shane, Evan and Jay with green liquid background."/>
<img src = "root/gallery/Image (62).jpg" alt = "Shane and Evan with blue and yellow background."/>
<img src = "root/gallery/Image (63).jpg" alt = "Wiktoria and Shane with blue, red, and yellow background."/>
<img src = "root/gallery/Image (64).jpg" alt = "Wiktoria and Shane with blue, red, and yellow background."/>
<img src = "root/gallery/Image (65).jpg" alt = "Wiktoria and Shane with blue, red, and yellow background."/>
<img src = "root/gallery/Image (72).jpg" alt = "Sam and Jay with bubble background."/>
</section>
<section class ="column">
<img src = "root/gallery/Image (73).jpg" alt = "Sam with green liquid background."/>
<img src = "root/gallery/Image (66).jpg" alt = "Roby and Ben with yellow and white squiggly background."/>
<img src = "root/gallery/Image (67).jpg" alt = "Roby and Ben with yellow and white squiggly background."/>
<img src = "root/gallery/Image (69).jpg" alt = "Sadbh, Emmet and Aoife, with blue squiggly background."/>
<img src = "root/gallery/Image (70).jpg" alt = "Aoife and Wikotria, with pink background."/>
</section>
</section>
<section class = "morepages">
<h4> More Pages</h4>
<a href = "gallerypage1.html">1</a>
<a href = "gallerypage2.html">2</a>
<a href = "gallerypage3.html">3</a>
</section>
</main>
<footer>
<p>All pictures are owned by Marian Mendoza</p>
</footer>
</html>