-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 1.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>UUID Generator</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="site-data/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" sizes="180x180" href="site-data/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="site-data/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="site-data/favicon-16x16.png">
<link rel="manifest" href="site-data/site.webmanifest">
</head>
<body>
<div class="container">
<h1>UUID Generator</h1>
<div class="controls">
<label for="uuid-count">Number of UUIDs (1-100):</label>
<input type="number" id="uuid-count" min="1" max="100" value="10">
<label for="uuid-version">UUID Version:</label>
<select id="uuid-version">
<option value="v1">Version 1</option>
<option value="v4" selected>Version 4</option>
<option value="timestamp-first">Timestamp-First</option>
</select>
<button id="generate-btn">Generate UUIDs</button>
<button id="download-btn">Download as TXT</button>
</div>
<div id="uuid-list"></div>
</div>
<script src="script.js"></script>
</body>
</html>