-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallerypage1.html
93 lines (73 loc) · 3.89 KB
/
gallerypage1.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
89
90
91
92
93
<!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-right.svg" alt="Go to the next page." /></a>
</section>
<section class="row">
<!-- Using sections in order to creates classes, to make gallery, hence no heading. -->
<section class="column">
<img src="root/gallery/Image (1).jpg" alt="Amy Craven with pink background." />
<img src="root/gallery/Image (52).jpg" alt="Amy Craven with pink background." />
<img src="root/gallery/Image (53).jpg" alt="Amy Craven with pink background." />
<img src="root/gallery/Image (54).jpg" alt="Amy Craven with pink background." />
<img src="root/gallery/Image (4).jpg" alt="Evan Rea with green and cyan background." />
<img src="root/gallery/Image (10).jpg" alt="Evan Rea with green and cyan background." />
<img src="root/gallery/Image (11).jpg" alt="Evan Rea with green and cyan background." />
<img src="root/gallery/Image (12).jpg" alt="Evan Rea with purple background." />
<img src="root/gallery/Image (13).jpg"
alt="Evan Rea being carried by Zach Moynihan, with blue background" />
</section>
<section class="column">
<img src="root/gallery/Image (14).jpg" alt="Wiktoria Kowalowka with crystal background" />
<img src="root/gallery/Image (15).jpg" alt="Wiktoria Kowalowka with crystal background" />
<img src="root/gallery/Image (16).jpg" alt="Wiktoria Kowalowka with crystal background" />
<img src="root/gallery/Image (17).jpg" alt="Wiktoria Kowalowka with crystal background" />
<img src="root/gallery/Image (18).jpg" alt="Roby Rue with fluid yellow, and blue background." />
<img src="root/gallery/Image (19).jpg" alt="Roby Rue with fluid yellow, and blue background." />
<img src="root/gallery/Image (20).jpg" alt="Roby Rue with fluid yellow, and blue background." />
</section>
<section class="column">
<img src="root/gallery/Image (22).jpg" alt="Flora with pink liquid background." />
<img src="root/gallery/Image (23).jpg" alt="Flora with pink liquid background." />
<img src="root/gallery/Image (24).jpg" alt="Flora with pink background." />
<img src="root/gallery/Image (25).jpg" alt="Flora with pink background." />
<img src="root/gallery/Image (26).jpg" alt="Shane Williams with blue background." />
<img src="root/gallery/Image (27).jpg" alt="Shane Williams with blue background." />
<img src="root/gallery/Image (28).jpg" alt="Shane Williams with blue background." />
<img src="root/gallery/Image (21).jpg" alt="Roby Rue with marble blue 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>