-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (29 loc) · 1.13 KB
/
index.html
File metadata and controls
37 lines (29 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Xscriptor Badges Collection</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Xscriptor Badges</h1>
<p>SVG Badges Collection. Click to copy GitHub Pages URL.</p>
<div class="search-container">
<svg class="search-icon" xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24">
<path
d="M21.71 20.29L18 16.61A9 9 0 1 0 16.61 18l3.68 3.68a1 1 0 0 0 1.42 0 1 1 0 0 0 0-1.41zM10 16a6 6 0 1 1 6-6 6 6 0 0 1-6 6z"
fill="#8b949e" />
</svg>
<input type="text" id="searchInput" placeholder="Search badges (e.g. 'python', 'docker')...">
</div>
</header>
<!-- Marquees will be injected here -->
<div id="marquee-view"></div>
<!-- Search results will be injected here -->
<div id="search-view"></div>
<div id="toast">URL Copied to Clipboard!</div>
<script src="script.js"></script>
</body>
</html>