-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (34 loc) · 1.27 KB
/
index.html
File metadata and controls
38 lines (34 loc) · 1.27 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTMLRecap</title>
</head>
<body>
<h1>Music, Man...</h1>
<hr />
<form>
<div style="background-color: turquoise; border: solid 2px black; padding: .5rem; float: left;">
<section>
<header style="color: cornsilk;">An Example of Quality Music:</header>
<a href="https://www.youtube.com/watch?v=W73pl61us58" target="_blank">Dayglow - Woah Man</a>
</section>
</div>
<div style="background-color: darkgoldenrod; border: solid 2px black; padding: .5rem; float: left;">
<header style="color: rgb(62, 216, 255);">Your Rating:</header>
<input type="range" id="rating" name="rating" min="1" max="10">
<label for="rating">On a Scale from 1-10</label>
</div>
</form>
<hr />
<form>
<div style="background-color: purple; border: solid 2px black; padding: .5rem; float: left;" >
<nav>
<a href="video.html" style="color: white;">Here's Another Great Song!</a>
</nav>
</div>
</form>
</body>
</html>