-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
105 lines (100 loc) · 5.01 KB
/
Copy pathindex.html
File metadata and controls
105 lines (100 loc) · 5.01 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IconicZar - Icon Gallery</title>
<link rel="icon" type="image/png" href="https://raw.githubusercontent.com/ZarScape/ZarScape/main/images/ZarScape/logo-with-background-rounded.png">
<link rel="stylesheet" href="css/style.css">
</head>
<body data-theme="light">
<header>
<div class="header-container">
<div class="header-top">
<div class="logo">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5"></path>
</svg>
Icons Gallery
</div>
<div class="controls">
<div class="search-container">
<span class="search-icon">
<svg viewBox="0 0 24 24" width="20" height="20" fill="none" stroke="currentColor" stroke-width="2">
<circle cx="11" cy="11" r="8"></circle>
<line x1="21" y1="21" x2="16.65" y2="16.65"></line>
</svg>
</span>
<input type="text" id="search" placeholder="Search icons...">
</div>
<button class="theme-toggle" id="theme-toggle" aria-label="Toggle theme">
<svg class="moon-icon" viewBox="0 0 24 24" width="20" height="20" fill="none" stroke="currentColor" stroke-width="2" style="display: none;">
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>
</svg>
<svg class="sun-icon" viewBox="0 0 24 24" width="20" height="20" fill="none" stroke="currentColor" stroke-width="2">
<circle cx="12" cy="12" r="5"></circle>
<line x1="12" y1="1" x2="12" y2="3"></line>
<line x1="12" y1="21" x2="12" y2="23"></line>
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line>
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line>
<line x1="1" y1="12" x2="3" y2="12"></line>
<line x1="21" y1="12" x2="23" y2="12"></line>
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line>
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>
</svg>
</button>
</div>
</div>
<div class="header-bottom">
<div class="filters">
<button class="filter-btn active" data-filter="all">All Icons</button>
<button class="filter-btn" data-filter="png">PNG Icons</button>
<button class="filter-btn" data-filter="svg">SVG Icons</button>
</div>
<div class="stats">
<div class="stat-item">
<svg viewBox="0 0 24 24" width="18" height="18" fill="none" stroke="currentColor" stroke-width="2">
<path d="M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5"></path>
</svg>
<span id="total-count">922</span> Total Icons
</div>
<div class="stat-item">
<svg viewBox="0 0 24 24" width="18" height="18" fill="none" stroke="currentColor" stroke-width="2">
<rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect>
</svg>
<span id="displayed-count">0</span> Displayed
</div>
</div>
</div>
</div>
</header>
<main>
<div class="gallery-header">
<h2 class="section-title">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M3 3h18v18H3z"></path>
<circle cx="9" cy="9" r="2"></circle>
<path d="M9 11v8M15 9v6"></path>
</svg>
Icon Library
</h2>
</div>
<div class="gallery" id="gallery">
</div>
<div class="load-more-container">
<button id="load-more">
<svg viewBox="0 0 24 24" width="18" height="18" fill="none" stroke="currentColor" stroke-width="2">
<line x1="12" y1="5" x2="12" y2="19"></line>
<line x1="5" y1="12" x2="19" y2="12"></line>
</svg>
Load More
</button>
</div>
</main>
<div class="toast" id="toast"></div>
<footer>
IconicZar © 2025 | All icons are property of their respective owners
</footer>
<script src="js/script.js"></script>
</body>
</html>