-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
103 lines (97 loc) · 2.17 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
<!DOCTYPE html>
<html>
<head>
<title>Gallery</title>
<link rel="stylesheet" href="navbar.css">
<style type="text/css">
body {
background-color: yellow;
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
}
#gallery {
display: flex;
margin: 20px;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
#gallery img {
height: 300px;
width: 350px;
border-radius: 5px;
}
.a-menu{
background-color:red ;
margin: 0 0 20px 0;
}
.a-menu:hover{
text-decoration: underline;
} </style>
</head>
<body>
<header>
<div id="head" class="flex">
<div id="logo">
<img src="logo.png" id="logo-img">
</div>
<div id="navbar">
<ul class="flex">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="menu.html">Menu</a></li>
<li><a href="location.html">Location</a></li>
<li><a href="#testimonials">Testimonials</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#.html" id="#">#</a></li>
</ul>
</header>
<main>
<h2 class="head" style="color:red;">Our Gallery</h2>
<div id="gallery">
<div>
<img src="gallery\b (1).jpg">
</div>
<div>
<img src="gallery\b (2).jpg">
</div>
<div>
<img src="gallery\b (3).jpg">
</div>
<div>
<img src="gallery\b (4).jpg">
</div>
<div>
<img src="gallery\b (5).jpg">
</div>
<div>
<img src="gallery\b (6).jpg">
</div>
<div>
<img src="gallery\b (7).jpg">
</div>
<div>
<img src="gallery\b (8).jpg">
</div>
<div>
<img src="gallery\b (9).jpg">
</div>
<div>
<img src="gallery\b (10).jpg">
</div>
<div>
<img src="gallery\b (11).jpg">
</div>
<div>
<img src="gallery\b (12).jpg">
</div>
</div>
<h2 class="head a-menu"><a href="menu.html" style="color:yellow">Check Our FULL MENU-----------------------></a></h2>
</main>
<footer>
<p>©Copyright 2022 DESiBURGER</p>
</footer>
</body>
</html>