forked from CodeYourFuture/Module-Data-Groups
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·28 lines (28 loc) · 797 Bytes
/
index.html
File metadata and controls
executable file
·28 lines (28 loc) · 797 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Quote generator app</title>
<script defer src="quotes.js"></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="slide-bar">
<label class="switch">
<input id="toggle-btn" type="checkbox" />
<span class="slider round"></span>
</label>
</div>
<div id="poster">
<p id="quote"></p>
<p id="author"></p>
<div id="button-field">
<button type="button" id="new-quote">New quote</button>
</div>
<div id="display-notice">
<p id="auto-play-notice" style="display: none">Auto-Play: On</p>
</div>
</div>
</body>
</html>