-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (42 loc) · 2.37 KB
/
Copy pathindex.html
File metadata and controls
50 lines (42 loc) · 2.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Random Name Selector</title>
<link rel="stylesheet" href="styles.css">
<script src="https://cdn.jsdelivr.net/npm/canvas-confetti@1.6.0/dist/confetti.browser.min.js"></script>
<meta name="description"
content="Easily pick random names from a list with our interactive and fun Random Name Selector. Add, edit, and save your name list for seamless usability.">
<meta name="keywords"
content="random name selector, name picker, confetti effect, interactive name list, fun name generator">
<meta name="author" content="Your Name">
<meta name="robots" content="index, follow">
<meta name="theme-color" content="#007bff">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="Random Name Selector">
<meta name="application-name" content="Random Name Selector">
<meta name="msapplication-TileColor" content="#007bff">
<meta name="msapplication-navbutton-color" content="#007bff">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<h1>Random Name Selector</h1>
<p>Enter a list of name you want to include and let the power of the internet select a random name for you. Once a name is selected it is removed from the current list and won't be selected a 2nd time. Don't worry your names are saved locally on your computer so you won't need to enter them every time</p>
<div id="toast" class="toast"></div>
<div class="name-list-container">
<label for="name-list">Name List</label>
<textarea id="name-list" rows="20" placeholder="Enter names, one per line"></textarea>
</div>
<div class="name-display">
<span id="selected-name">Press the button to pick a name</span>
</div>
<button class="button" onclick="pickRandomName()">Randomize</button>
</div>
<script src="script.js"></script>
</body>
</html>