-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwordBoxes.html
69 lines (58 loc) · 1.92 KB
/
wordBoxes.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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Word Boxes</title>
<link rel="stylesheet" href="wordBoxes.css">
<script src="wordBoxes.js" charset="utf-8" defer></script>
</head>
<body>
<form class="options-form">
<div class="input-container">
<label for="words-input">Words</label>
<textarea name="words-input" id="words-input"></textarea>
</div>
<div class="input-container">
<label for="every-nth-select">Highlight every n'th</label>
<select id="every-nth-select">
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
<option value="4" selected>Four</option>
<option value="5">Five</option>
</select>
</div>
<div class="input-container">
<fieldset id="highlight-color">
<legend>Highlight color</legend>
<div>
<label for="highlight-color-red">Red</label>
<input type="radio" name="highlight-color" id="highlight-color-red" value="red" checked>
</div>
<div>
<label for="highlight-color-green">Green</label>
<input type="radio" name="highlight-color" id="highlight-color-green" value="green">
</div>
<div>
<label for="highlight-color-blue">Blue</label>
<input type="radio" name="highlight-color" id="highlight-color-blue" value="blue">
</div>
</fieldset>
</div>
</form>
<section class="container">
<div class="button-container">
<button class="add-word-button">+</button>
</div>
<div class="words-container">
</div>
</section>
<section class="container">
<div class="button-container">
<button class="add-word-button">+</button>
</div>
<div class="words-container">
</div>
</section>
</body>
</html>