-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (59 loc) · 1.81 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TV Show DOM - Level 500 - Sample Solution</title>
<link
href="https://fonts.googleapis.com/css2?family=Lora:wght@700&family=Merriweather&display=swap"
rel="stylesheet"
/>
<link href="style.css" rel="stylesheet" />
</head>
<body>
<div id="root">
<div id="voiceCommandsHelpDialog" class="modal" hidden>
<h3>What can I say?</h3>
<ul></ul>
</div>
<div id="episodesPage">
<header>
<div id="listShowsLink">Back to all shows</div>
<h1 id="showTitleHeader">Breaking Bad</h1>
</header>
<div id="controls">
<select id="episodeSelect"></select>
<input
id="searchInput"
type="text"
placeholder="your search term..."
/>
<span id="countDisplay">Displaying n episodes</span>
<div class="words" contenteditable>Spoken words will come here</div>
</div>
<div id="episodes"></div>
</div>
<div id="showsPage">
<header></header>
<div id="controlPanel">
<span class="control">Filtering for </span
><input
id="showsSearchInput"
class="control"
type="text"
placeholder="search for a show"
value="mystery"
/>
<div class="control" id="filterSummary">?</div>
<select id="showSelect"></select>
<div class="words" contenteditable>Spoken words will come here</div>
</div>
<div>
<ul id="showsList"></ul>
</div>
</div>
</div>
<script src="shows.js"></script>
<script src="script.js"></script>
</body>
</html>