-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfloral1.html
More file actions
58 lines (53 loc) · 2.08 KB
/
floral1.html
File metadata and controls
58 lines (53 loc) · 2.08 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Floral Gallery</title>
<link rel="stylesheet" href="collections_style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"/>
</head>
<body>
<div class="wrapper">
<div class="wrapper">
<a href="gallery1_index.html" style="text-decoration: none; cursor: pointer; color: white;">
<i class="fas fa-arrow-left"></i>
</a>
<nav>
<div class="items">
<a href="floral1.html"><span class="item active" data-name="floral">Floral</span></a>
<a href="leaves1.html"><span class="item" data-name="leaves">Leaves</span></a>
<a href="stripes1.html"><span class="item" data-name="stripes">Stripes</span></a>
<a href="checks1.html"><span class="item" data-name="checks">Checks</span></a>
<a href="mesh1.html"><span class="item" data-name="mesh">Mesh</span></a>
<a href="border1.html"><span class="item " data-name="border">Border</span></a>
</div>
</div>
</nav>
<div class="gallery">
<!-- <div class="floral-head">floral</div> -->
<div class="category" data-category="floral">
<!-- Add <img> tags for the floral images here -->
<script>
for(let i=24;i<=44;i++)
{
if(i!=56)
document.write(`<div class="image" data-name="floral"><span><a href="images/floral/f${i}.png"><img src="images/floral/f${i}.png" alt="Floral ${i}"></a></span></div>`)
}
</script>
</div>
</div>
</div>
<!-- fullscreen img preview box -->
<div class="preview-box">
<div class="details">
<span class="title">Image Category: <p></p></span>
<span class="icon fas fa-times"></span>
</div>
<div class="image-box"><img src="" alt=""></div>
</div>
<div class="shadow"></div>
<script src="collections_script.js"></script>
</body>
</html>
<!-- ee file css ekkada? -->