-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathborder.html
More file actions
55 lines (50 loc) · 1.98 KB
/
border.html
File metadata and controls
55 lines (50 loc) · 1.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Border 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="gallery_index.html" style="text-decoration: none; cursor: pointer; color: white;">
<i class="fas fa-arrow-left"></i>
</a>
<nav>
<div class="items">
<a href="floral.html"><span class="item" data-name="floral">Floral</span></a>
<a href="leaves.html"><span class="item" data-name="leaves">Leaves</span></a>
<a href="stripes.html"><span class="item" data-name="stripes">Stripes</span></a>
<a href="checks.html"><span class="item" data-name="checks">Checks</span></a>
<a href="mesh.html"><span class="item" data-name="mesh">Mesh</span></a>
<a href="border.html"><span class="item active" data-name="border">Border</span></a>
</div>
</nav>
<div class="gallery">
<div class="category" data-category="border">
<!-- Add <img> tags for the stripes images here -->
<script>
for(let i=1;i<=32;i++)
{
document.write(`<div class="image" data-name="border"><span><a href="images/border/b${i}.png"><img src="images/border/b${i}.png" alt="Border ${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? -->