We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c31ef9 commit c28e8d3Copy full SHA for c28e8d3
Sprint-3/quote-generator/index.html
@@ -1,16 +1,21 @@
1
-<!DOCTYPE html>
+<!doctype html>
2
<html lang="en">
3
<head>
4
<meta charset="UTF-8" />
5
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
- <title>Title here</title>
+ <title>Quote Generator App</title>
7
<script defer src="quotes.js"></script>
8
</head>
9
<body>
10
- <h1>hello there</h1>
+ <h1>Quote Generator</h1>
11
<p id="quote"></p>
12
<p id="author"></p>
13
<button type="button" id="new-quote">New quote</button>
14
+ <div id="autoplay-controls">
15
+ <label>
16
+ <input type="checkbox" id="autoplay-toggle" /> Enable Auto-play
17
+ </label>
18
+ <p id="autoplay-status">auto-play: OFF</p>
19
+ </div>
20
</body>
21
</html>
-testing
0 commit comments