-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwin.html
31 lines (28 loc) · 1.22 KB
/
win.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Guess The Pitch</title>
<link rel="stylesheet" href="styles/styles.css">
<link rel="icon" href="img/trebleClef.svg">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=League+Spartan:[email protected]&display=swap" rel="stylesheet">
<script src="js/app.js"></script>
</head>
<body>
<div class="mainCenter">
<h1 class="resultsTitle">You Got It Right!</h1>
<div class="resultsWrapper">
<p class="resultsDesc">It is:</p>
<div class="resultsControlsDisplay">
<div class="audioControlsDiv">
<button id="playAudioBtn" class="playAudioBtn"></button>
<input type="range" id="volumeSlider" min="0" max="1" step="0.01">
</div>
<p id="correctNote" class="resultsTextNote"></p>
</div>
</div>
<button id="continueBtn" class="continueBtn">Tap here to continue</button>
</div>
</body>
</html>