-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
61 lines (54 loc) · 2.9 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Music Wordle</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css">
<link href='./assets/css/style.css' rel="stylesheet">
</head>
<body id = "background">
<div id="section">
<div class="container">
<div id = "counter"></div>
<h3 class="title">
<img src = "./assets/img/jingle.gif" alt = "jingle logo music guessing game">
</h3>
<button id = "play" class="button is-link is-large is-warning has-text-weight-medium"><h1>▶Play!</h1></button>
</div>
<div class = "section">
<h1 class = "title">It's like Wordle, but for music.</h1>
</div>
<img id = instrc src = "assets/img/instrc.jpg">
</div>
<div id = "second">
<div class="field">
<div class="control">
<h3 class="title">
<img src = "./assets/img/jingle.gif" alt = "jingle logo music guessing game">
</h3>
<input class="input is-rounded is-medium" id="guess" type="text" placeholder="Know who? Search for artist." spellcheck="false" >.</input>
<button class="button is-danger is-rounded is-medium has-background-warning has-text-black has-text-weight-medium" id="enter-button">Submit</button>
<a href="index.html"><button class = "button is-danger is-rounded is-medium has-background-warning has-text-black has-text-weight-bold" id = "restart">↻</button></a>
</div>
</div>
<div class="card">
<div class="card-content">
<div class = "title" id = "feedback">Who sang this song?</div>
<ul class= "track box has-background-black has-text-white has-text-weight-medium is-size-6" id="track"></ul>
<ul style="display: none" class="track box has-background-black has-text-white has-text-weight-medium is-size-6" id = "track1"></ul>
<ul style = "display: none" class="track box has-background-black has-text-white has-text-weight-medium is-size-6" id = "track2"></ul>
<ul style = "display: none" class="track box has-background-black has-text-white has-text-weight-medium is-size-6" id = "track3"></ul>
</div>
</div>
<div class="card-image ">
<figure id = "track4" style = "display: none" class="image is-4by3">
<img class = "img" id = "img" src="https://www.seekpng.com/png/detail/110-1100707_person-avatar-placeholder.png" alt="Person - Avatar Placeholder@seekpng.com">
</figure>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/canvas-confetti@1.5.1/dist/confetti.browser.min.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script type="text/javascript" src="./assets/js/script.js"></script>
</body>
</html>