-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
74 lines (56 loc) · 2.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Index1</title>
<script src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60=" crossorigin="anonymous">
</script>
<script src="https://kit.fontawesome.com/fb65f5d132.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous" />
<link rel="stylesheet" href="css/header.css">
<link rel="stylesheet" href="css/navbar.css">
<link rel="stylesheet" href="css/up_and_down.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/gallery.css">
</head>
<body>
<div style="position: relative;">
<div id="header"></div>
<!--Remaining section-->
<!-- ALL PAGE TITLE -->
<div class="all-page-title">
<div class="row">
<div class="col-lg-11">
<h1>GALLERY</h1>
</div>
</div>
</div>
<div id="gallery">
<!-- GALLERY -->
</div>
<div class="gallery">
<a href="images/show 4.jpg" ></a><img src="images/show 4.jpg" alt="" /></a>
<a href="images/pd.jpg"><img src="images/pd.jpg" alt="" /></a>
<a href="images/pd1.png"><img src="images/pd1.png" alt="" /></a>
<a href="images/pd2.jpg"><img src="images/pd2.jpg" alt="" /></a>
<a href="images/pd3.jpg"><img src="images/pd3.jpg" alt="" /></a>
<a href="images/factory.JPG"><img src="images/factory.JPG" alt="" /></a>
<a href="images/pd5.JPG"><img src="images/pd5.JPG" alt="" /></a>
<a href="images/show 2.jpg"><img src="images/show 2.jpg" alt="" /></a>
<a href="images/show 3.jpg"><img src="images/show 3.jpg" alt="" /></a>
</div>
<div id="footer"></div>
</div>
<script>
$.get("header.html", function (data) {
$("#header").replaceWith(data);
});
$.get("footer.html", function (data) {
$("#footer").replaceWith(data);
});
</script>
</body>
</html>