-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallery.html
68 lines (66 loc) · 2.24 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
<!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">
<link href="styles.css" type="text/css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KyZXEAg3QhqLMpG8r+8fhAXLRk2vvoC2f3B09zVXn8CA5QIVfZOJ3BCsw2P0p/We" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-U1DAWAznBHeqEIlVSCgzq+c9gqGAJn5c/t99JyeKa9xxaYpSvHU5awsuZVVFIhvj" crossorigin="anonymous"></script>
<title>Gallery</title>
<style>body{
overflow-x: hidden;
}
.gallery{
padding-top: 70px;
}
.gal_row {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding: 0 4px;
}
.col{
-ms-flex: 25%;
flex: 25%;
max-width: 25%;
padding: 0 4px;
}
.col img {
margin-top: 8px;
vertical-align: middle;
width: 100%;
}
@media screen and (max-width: 800px) {
.col{
-ms-flex: 50%;
flex: 50%;
max-width: 50%;
}
}
@media screen and (max-width: 600px) {
.col {
-ms-flex: 100%;
flex: 100%;
max-width: 100%;
}
}
</style>
</head>
<body>
<script src="navbar.js"></script>
<div id="navbar">
<script>navbar();</script>
</div>
<div class="gallery">
<div class="gal_row">
<div class="col"><img src="images/1626350763-213.jpg"><img src="images/index.jpg"></div>
<div class="col"><img src="images/index2.jpg"><img src="images/index3.jpg"></div>
<div class="col"><img src="images/960561-ola-scooter-3.webp"><img src="images/contact_image.webp"></div>
<div class="col"><img src="images/index1.jpg"><img src="images/index4.jpg">></div>
</div>
</div>
</body>
</html>