Skip to content

Commit c28e8d3

Browse files
committed
index.html completed
1 parent 8c31ef9 commit c28e8d3

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

Sprint-3/quote-generator/index.html

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<title>Title here</title>
6+
<title>Quote Generator App</title>
77
<script defer src="quotes.js"></script>
88
</head>
99
<body>
10-
<h1>hello there</h1>
10+
<h1>Quote Generator</h1>
1111
<p id="quote"></p>
1212
<p id="author"></p>
1313
<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>
1420
</body>
1521
</html>
16-
testing

0 commit comments

Comments
 (0)