-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGallery.html
106 lines (89 loc) · 4.44 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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<meta name="Description" content="Gallery with 10 images of Jack Brown's portfolio.">
<title id="title">Gallery</title>
<link rel="stylesheet" href="globalstylesheet.css">
<link rel="stylesheet" href="Gallery.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Abel&display=swap">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="pagestructure">
<header>
<!-- Start of the NavBar -->
<nav>
<ul class="navcontainer" aria-label="navigationbar">
<li class="navitem"> <a href="index.html">Home </a></li>
<li class="navitem"> <a href="About.html">About </a></li>
<li class="navitem"> <a href="ContactMe.html">Contact Me</a></li>
<li class="navitem"> <a href="Gallery.html">Gallery</a></li>
</ul>
</nav>
<!-- End of the NavBar -->
</header>
<!-- this code below creates three separate grid containers, two with three columns and one with four columns-->
<main>
<div class="gallerygridcontainer1">
<div class="gallerygriditem1">
<img src="images/artichoke.jpg" alt="multiple purple artichokes repeated across image">
</div>
<div class="gallerygriditem2"> <img src="images/berries.jpg"
alt="blueberries, blackberries and and strawberries mixed together">
</div>
<div class="gallerygriditem3">
<img src="images/bread.jpg" alt="brown bread">
</div>
</div>
<div class="gallerygridcontainer2">
<div class="gallerygriditem4">
<img src="images/cookies.jpg"
alt="star-shaped cookies with icing, with decorative pines cones and cinnamon sticks">
</div>
<div class="gallerygriditem5"> <img src="images/eclair.jpg"
alt="Two cream eclairs placed next to one another with cream and strawberries on the top of both.">
</div>
<div class="gallerygriditem6">
<img src="images/Eastermacaroons.jpg"
alt="A stack of purple, green and yellow macaroonsm, with brightly coloured icing ">
</div>
<div class="gallerygriditem7">
<img src="images/Sauces.jpg"
alt="a yellow bowl and green bowl with unindentifiable sauces, with a herb garnish placed on the top">
</div>
</div>
<div class="gallerygridcontainer3">
<div class="gallerygriditem8">
<img src="images/hors-doeuvre.jpg"
alt="a selection of hors-doeuvre, including cheese, grapes and hams on a platter, with a black background.">
</div>
<div class="gallerygriditem9"> <img src="images/cakeballs.jpg"
alt="a large number of cakes shaped in a circular ball shape, with pink and white icing covering the top of them.">
</div>
<div class="gallerygriditem10">
<img src="images/cheeses.jpg"
alt="a selection of yellow cheeses on a table with other foods such as slice pair, grapes and chutneys">
</div>
</div>
</main>
<!-- Footer for all pages-->
<footer>
<div class="footerheading">
<h2>Jack Brown Designs ©</h2>
</div>
<ul class="footersocial">
<li><a href="#"><i class="fa fa-facebook"></i></a></li>
<li><a href="#"><i class="fa fa-twitter"></i></a></li>
<li><a href="#"><i class="fa fa-instagram"></i></a></li>
<li><a href="#"><i class="fa fa-youtube"></i></a></li>
<li><a href="#"><i class="fa fa-linkedin-square"></i></a></li>
</ul>
</footer>
<!-- end of the footer-->
</div>
</body>
</html>