-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (33 loc) · 1.48 KB
/
index.html
File metadata and controls
33 lines (33 loc) · 1.48 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Crossword Generator</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3pro.css">
<link rel="stylesheet" href="slider.css">
</head>
<body style="font-family:'Lucida Console', Monaco, monospace;">
<div class="w3-input">
<input type="text" id="txtInput" placeholder="Word" class="w3-input w3-animate-input" style="width:33.3%">
<div class="w3-bar">
<input class="w3-check" type="checkbox" checked="checked" id="show_list"><label>Show list</label>
<input class="w3-check" type="checkbox" id="cheat"><label>Cheat</label>
<div class="slidecontainer">
<label id="widthLbl">Width:</label>
<input type="range" min="0" max="20" value="10" class="slider" id="wrange">
</div>
</div>
<div class="w3-bar">
<button class="w3-btn w3-bar-item w3-border w3-black" style="width:50%" id="add_btn" onClick="addBtnTrigger()">Add Word</button>
<button class="w3-btn w3-bar-item w3-border w3-border-teal" style="width:50%" id="generate_btn" onClick="generateBtnTrigger()">Generate</button>
</div>
</div>
<div class="w3-container">
<p>Select to delete:</p>
<ul id="words"> <!-- il elements should consist of buttons w/ unique IDs that will delete on click -->
</ul>
</div>
<script src="index.js"></script>
</body>
</html>