-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
111 lines (94 loc) · 4.46 KB
/
index.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
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Demo</title>
<!-- FontAwesome -->
<link rel="stylesheet" href="./css/all.min.css">
<!-- Bootstrap -->
<link rel="stylesheet" href="./css/bootstrap.min.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="./css/./style.css">
</head>
<body>
<section id="slider" class="my-5 bg-light">
<div class="container py-4">
<div class="row g-4">
<div class="col-sm-6 col-md-4">
<figure class="m-0">
<img class="image w-100 rounded" src="./images/work-1.jpg" alt="">
<figcaption class="bg-light text-center rounded ">
<h3 class="h6 mt-2">Lorem, ipsum dolor.</h3>
<p>Lorem ipsum dolor sit amet.</p>
</figcaption>
</figure>
</div>
<div class="col-sm-6 col-md-4">
<figure class="m-0">
<img class="image w-100 rounded" src="./images/work-2.jpg" alt="">
<figcaption class="bg-light text-center rounded ">
<h3 class="h6 mt-2">Lorem, ipsum dolor.</h3>
<p>Lorem ipsum dolor sit amet.</p>
</figcaption>
</figure>
</div>
<div class="col-sm-6 col-md-4">
<figure class="m-0">
<img class="image w-100 rounded" src="./images/work-3.jpg" alt="">
<figcaption class="bg-light text-center rounded ">
<h3 class="h6 mt-2">Lorem, ipsum dolor.</h3>
<p>Lorem ipsum dolor sit amet.</p>
</figcaption>
</figure>
</div>
<div class="col-sm-6 col-md-4">
<figure class="m-0">
<img class="image w-100 rounded" src="./images/work-4.jpg" alt="">
<figcaption class="bg-light text-center rounded ">
<h3 class="h6 mt-2">Lorem, ipsum dolor.</h3>
<p>Lorem ipsum dolor sit amet.</p>
</figcaption>
</figure>
</div>
<div class="col-sm-6 col-md-4">
<figure class="m-0">
<img class="image w-100 rounded" src="./images/work-5.jpg" alt="">
<figcaption class="bg-light text-center rounded ">
<h3 class="h6 mt-2">Lorem, ipsum dolor.</h3>
<p>Lorem ipsum dolor sit amet.</p>
</figcaption>
</figure>
</div>
<div class="col-sm-6 col-md-4">
<figure class="m-0">
<img class="image w-100 rounded" src="./images/work-6.jpg" alt="">
<figcaption class="bg-light text-center rounded ">
<h3 class="h6 mt-2">Lorem, ipsum dolor.</h3>
<p>Lorem ipsum dolor sit amet.</p>
</figcaption>
</figure>
</div>
</div>
<div id="lightBox" class="d-none">
<div
class="lightbox__layer position-fixed top-0 bottom-0 start-0 end-0 d-flex justify-content-center align-items-center">
<div class="w-50 position-relative">
<img id="mainImage" class="w-100 rounded" src="" alt="">
<div
class="position-absolute top-0 start-0 bottom-0 end-0 d-flex justify-content-between align-items-center">
<i id="prev" class="fa-solid fa-chevron-left m-3 text-info"></i>
<i id="next" class="fa-solid fa-chevron-right m-3 text-info"></i>
<i id="close" class="fa-solid fa-xmark m-3 text-danger position-absolute top-0 end-0"></i>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Bootstrap -->
<script src="./js/bootstrap.bundle.min.js"></script>
<!-- Custom JS -->
<script src="./js/index.js"></script>
</body>
</html>