-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (36 loc) · 1.58 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
<!DOCTYPE html>
<html>
<head>
<title>Spotify Quiz</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://sp-bootstrap.global.ssl.fastly.net/8.0.0/sp-bootstrap.min.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="./style.css" />
<script src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<!-- Include the Web Playback SDK -->
<script src="https://sdk.scdn.co/spotify-player.js"></script>
<!-- Include our Javascript -->
<script src="script.js" defer></script>
</head>
<body class="container">
<h1 class="text-salmon" style="text-align: center;">Spotify Quiz</h1>
<form id="form">
<h4>How many songs do you want to play?   <input type="text" id="numSongs" maxlength="3" size="3" value="All"
style="text-align:center;"> <br> </h4>
<h4>How many multiple-choice options do you want?   <input type="text" id="numOptions" maxlength="2" size="2"
value="4" style="text-align:center;"> <br> </h4>
<h4>Hard Mode <input type="checkbox" id="hardmode"><br></h4>
</form>
<div id="test">
<h4 id="menu">Choose one of your playlists to start:<br><br></h4>
<h5 id="score"></h5>
<h6 id="time"></h6>
</div>
<footer>
<p>Made by <a href="https://dogatekin.github.io">Doga Tekin</a>. See the code on <a
href="https://github.com/dogatekin/molto-vivace/">GitHub</a>.</p>
</footer>
</body>
</html>