generated from Code-Institute-Org/gitpod-database-config
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgallery.html
104 lines (93 loc) · 4.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Braai Gifting Co offers high-quality meats and spices that are locally sourced, creating a stress-free gift-giving experience. Give the gift of a braai and create lasting memories with ease, quality, and convenience.">
<meta name="keywords" content="braai, BBQ, gift packages, high-quality meats, locally sourced, stress-free gift-giving, gift packages, recipe book, personalized packaging, 48-hour delivery">
<link rel="stylesheet" href="assets/css/style.css">
<title>Braai Gift Co</title>
</head>
<body>
<header id="navbar">
<a href="index.html">
<h1 class="logo">Braai Gift Co</h1>
</a>
<nav class="menu">
<ul>
<li>
<form action="order.html" method="get">
<button class="order-button">Order</button>
</form>
</li>
<li>
<a href="gallery.html" class="active">Box Gallery</a>
</li>
<li>
<a href="index.html">Home</a>
</li>
</ul>
</nav>
</header>
<br>
<div id="assortment-bbq-photos">
<img src="assets/images/gallery-one.png" alt="A group of people are barbecuing vegetarian kebabs on a grill.">
<img src="assets/images/gallery-six.png" alt="Two couples are barbecuing next to their van in nature.">
<img src="assets/images/gallery-twelve.png" alt="Person holds a sharp knife over large cut of meat." >
<img src="assets/images/gallery-two.png" alt="Several pieces of barbecue equipment are placed on a table, including a Weber grill lid, two skewers, a spatula, and a large fork." >
<img src="assets/images/gallery-three.png" alt="A medium-sized wood-burning fire on the beach at sunset.">
<img src="assets/images/gallery-four.png" alt="A man is seasoning a piece of meat on a barbecue while a woman and child sit at a table in the background." >
<img src="assets/images/gallery-five.png" alt="A plate with four kebabs and various types of vegetables." >
<img src="assets/images/gallery-six.png" alt="Two couples are barbecuing next to their van in nature.">
<img src="assets/images/gallery-seven.png" alt="A small, old barbecue is producing large flames.">
<img src="assets/images/gallery-eight.png" alt="A man is busy maintaining a fire in a Weber barbecue, with big flames rising from it.">
<img src="assets/images/gallery-nine.png" alt="A man and a woman are holding each other next to a barbecue while meat is cooking in the woods." >
<img src="assets/images/gallery-ten.png" alt="A person is turning meat and vegetables on a grill with smoke coming from it." >
<img src="assets/images/gallery-eleven.png" alt="BBQ and grilling equipment arranged neatly on a table." >
</div>
<footer>
<ul class="social-networks">
<li>
<a
href="https://facebook.com"
target="_blank"
rel="noopener"
aria-label="Visit our Facebook page (opens in a new tab)"
><i class="fab fa-facebook"></i
></a>
</li>
<li>
<a
href="https://twitter.com"
target="_blank"
rel="noopener"
aria-label="Visit our Twitter page (opens in a new tab)"
><i class="fab fa-twitter-square"></i
></a>
</li>
<li>
<a
href="https://youtube.com"
target="_blank"
rel="noopener"
aria-label="Visit our YouTube page (opens in a new tab)"
><i class="fab fa-youtube-square"></i
></a>
</li>
<li>
<a
href="https://instagram.com"
target="_blank"
rel="noopener"
aria-label="Visit our Instagram page (opens in a new tab)"
><i class="fab fa-instagram"></i
></a>
</li>
</ul>
</footer>
<!--font awesome script-->
<script src="https://kit.fontawesome.com/210d527ace.js" crossorigin="anonymous">
</script>
</body>
</html>