-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallery.html
62 lines (54 loc) · 2.72 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title> Here are the photos.</title>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;600&display=swap" rel="stylesheet">
<!-- external css file -->
<link rel="stylesheet" href="css/general_styles.css">
<link rel="stylesheet" href="css/gallery_styles.css">
</head>
<body>
<div class="grid-container">
<div class="brand">Food festival</div>
<div class="page-links">
<a href="index.html"><button class="menu-button">Home</button></a>
<a href="gallery.html"><button class="menu-button">Gallery</button></a>
<a href="about.html"><button class="menu-button">About</button></a>
</div>
</div>
<div class="main">
<h1>Photo Gallery</h1>
</div>
<div class="gallery-container">
<figure class="gallery-item" id="gallery-item-1">
<img src="images/gallery_1.jpg" class="gallery-img" alt="A photo of Chinese combination noodles">
</figure>
<figure class="gallery-item" id="gallery-item-2">
<img src="images/gallery_2.jpg" class="gallery-img" alt="A photo of Malaysian laksa">
</figure>
<figure class="gallery-item" id="gallery-item-3">
<img src="images/gallery_3.jpg" class="gallery-img" alt="A photo of Indian curry">
</figure>
<figure class="gallery-item" id="gallery-item-4">
<img src="images/gallery_4.jpg" class="gallery-img" alt="A photo of Japanese sushi">
</figure>
<figure class="gallery-item" id="gallery-item-5">
<img src="images/gallery_5.jpg" class="gallery-img" alt="A photo of burger and chips combo">
</figure>
<figure class="gallery-item" id="gallery-item-6">
<img src="images/gallery_6.jpg" class="gallery-img" alt="A photo of Vietnamnese Pho">
</figure>
<figure class="gallery-item" id="gallery-item-7">
<img src="images/gallery_7.jpg" class="gallery-img" alt="A photo of berry ice cream">
</figure>
<figure class="gallery-item" id="gallery-item-8">
<img src="images/gallery_8.jpg" class="gallery-img" alt="A photo of Santa Monica Oysters">
</figure>
</div>
</body>
</html>