-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
142 lines (139 loc) · 3.41 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!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" />
<title>Gallery</title>
<!-- font-awesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w=="
crossorigin="anonymous"
/>
<!-- main css -->
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<!-- flowers -->
<section class="section flowers">
<img
src="./images/flower-1.jpeg"
alt="flower"
title="flower-1"
class="img"
data-id="1"
/>
<img
src="./images/flower-2.jpeg"
alt="flower"
title="flower-2"
class="img"
data-id="2"
/>
<img
src="./images/flower-3.jpeg"
alt="flower"
title="flower-3"
class="img"
data-id="3"
/>
<img
src="./images/flower-4.jpeg"
alt="flower"
title="flower-4"
class="img"
data-id="4"
/>
</section>
<!-- home interior -->
<section class="section home">
<img
src="./images/home-1.jpeg"
alt="home interior"
title="home-1"
class="img"
data-id="1"
/>
<img
src="./images/home-2.jpeg"
alt="home interior"
title="home-2"
class="img"
data-id="2"
/>
<img
src="./images/home-3.jpeg"
alt="home interior"
title="home-3"
class="img"
data-id="3"
/>
<img
src="./images/home-4.jpeg"
alt="home interior"
title="home-4"
class="img"
data-id="4"
/>
<img
src="./images/home-5.jpeg"
alt="home interior"
title="home-5"
class="img"
data-id="5"
/>
</section>
<!-- modal -->
<div class="modal">
<button class="close-btn">
<i class="fas fa-times"></i>
</button>
<div class="modal-content">
<!-- prev and next buttons -->
<button class="prev-btn">
<i class="fas fa-chevron-left"></i>
</button>
<button class="next-btn">
<i class="fas fa-chevron-right"></i>
</button>
<!-- content -->
<img src="./images/flower-1.jpeg" alt="main img" class="main-img" />
<h3 class="image-name">image name</h3>
<div class="modal-images">
<img
src="./images/flower-1.jpeg"
alt="flower"
title="flower-1"
class="modal-img selected"
data-id="1"
/>
<img
src="./images/flower-2.jpeg"
alt="flower"
title="flower-2"
class="modal-img"
data-id="2"
/>
<img
src="./images/flower-3.jpeg"
alt="flower"
title="flower-3"
class="modal-img"
data-id="3"
/>
<img
src="./images/flower-4.jpeg"
alt="flower"
title="flower-4"
class="modal-img"
data-id="4"
/>
</div>
</div>
</div>
<!-- main js -->
<script src="./app.js"></script>
</body>
</html>