-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcards.html
More file actions
37 lines (37 loc) · 1.05 KB
/
cards.html
File metadata and controls
37 lines (37 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Clone 2</title>
<link rel="stylesheet" href="cards.css">
</head>
<body>
<audio id="won_theme">
<source src="audio/won_theme.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<audio id="ok_bip">
<source src="audio/ok_bip.wav" type="audio/wav">
</audio>
<audio id="bad_bip">
<source src="audio/bad_bip.wav" type="audio/wav">
</audio>
<div class="container" id="main">
<div class="row" id="row1">
</div>
<div class="row" id="row2">
</div>
<div class="row" id="row3">
</div>
<div class="row" id="row4">
</div>
</div>
<div class="row_text">
<p id="timer_txt"></p>
<p id="score_txt"></p>
</div>
<script src="code.js"></script>
</body>
</html>