-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallerypage2.html
89 lines (70 loc) · 4 KB
/
gallerypage2.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
<!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="gallerypage1.html"><img src = "root/buttons/arrow-left.svg" alt = "Go to the next page."/></a>
<a href="gallerypage3.html"><img src = "root/buttons/arrow-right.svg" alt = "Go back a page."/></a>
</section>
<section class ="row">
<section class ="column">
<img src = "root/gallery/Image (29).jpg" alt = "Jay Maguire with water background."/>
<img src = "root/gallery/Image (30).jpg" alt = "Jay Maguire with water background."/>
<img src = "root/gallery/Image (31).jpg" alt = "Jay Maguire with water background."/>
<img src = "root/gallery/Image (32).jpg" alt = "Emmet O'Shea with sunset background"/>
<img src = "root/gallery/Image (33).jpg"alt = "Emmet O'Shea with sunset background."/>
<img src = "root/gallery/Image (34).jpg" alt = "Emmet O'Shea with liquid, blue and purple background."/>
<img src = "root/gallery/Image (35).jpg" alt = "Emmet O'Shea with liquid, blue and purple background."/>
<img src = "root/gallery/Image (36).jpg" alt = "Emmet O'Shea with liquid, blue and purple background."/>
<img src = "root/gallery/Image (37).jpg" alt = "Sadbh Rook with lemon background."/>
</section>
<section class ="column">
<img src = "root/gallery/Image (38).jpg" alt = "Sadbh Rook with lemon background."/>
<img src = "root/gallery/Image (39).jpg" alt = "Sadbh Rook with lemon background."/>
<img src = "root/gallery/Image (74).jpg" alt = "Sadbh Rook with cloud backgorund."/>
<img src = "root/gallery/Image (75).jpg" alt = "Sadbh Rook with cloud backgorund."/>
<img src = "root/gallery/Image (76).jpg" alt = "Sadbh Rook with cloud backgorund."/>
<img src = "root/gallery/Image (40).jpg" alt = "Aoife O'Brien with orange liquid background."/>
<img src = "root/gallery/Image (41).jpg" alt = "Aoife O'Brien with orange liquid background."/>
</section>
<section class ="column">
<img src = "root/gallery/Image (44).jpg" alt = "Ben Shorten with blue background."/>
<img src = "root/gallery/Image (45).jpg" alt = "Ben Shorten with blue background."/>
<img src = "root/gallery/Image (46).jpg" alt = "Ben Shorten with blue and yellow background."/>
<img src = "root/gallery/Image (47).jpg" alt = "Ben Shorten with blue and yellow background."/>
<img src = "root/gallery/Image (48).jpg" alt = "Ben Shorten with blue and yellow background."/>
<img src = "root/gallery/Image (49).jpg" alt = "Rosha Murphy with purple background."/>
<img src = "root/gallery/Image (50).jpg" alt = "Rosha Murphy with purple 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>