-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (43 loc) · 1.31 KB
/
Copy pathindex.html
File metadata and controls
44 lines (43 loc) · 1.31 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
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Keyboard Killer</title>
<link rel="stylesheet" href="style.css" />
<script src="app.js" type="module"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
</head>
<body>
<audio
src="./songs/_Sooraj Dooba Hain_ FULL AUDIO Song _ Roy _ Arijit.mp3"
></audio>
<div class="container">
<div class="arpos">
<div class="word" id="word1"></div>
<div class="word" id="word2"></div>
<div class="word" id="word3"></div>
<div class="word" id="word4"></div>
</div>
<div class="textbox">
<form name="form1" class="inp" id="formad" action="">
<input
type="text"
id="myInput"
placeholder="type falling words"
name="letter"
style="width:300px; height:55px; font-size:30px;"
/>
<button id="submit" style="width:120px; height:55px; font-size:30px;">
Submit
</button>
</form>
</div>
<div class="score">
<h2>Score:</h2>
<h2 id="bron">0</h2>
</div>
<h1>Keyboard Killer</h1>
</div>
</body>
</html>