-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (40 loc) · 1.47 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
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<link href="https://fonts.googleapis.com/css2?family=Bangers&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Indie+Flower|Lobster" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<meta content="width=device-width, initial-scale=1" name="viewport" />
<title>Roll It! -- by Halim</title>
</head>
<body>
<h2 class="wellcomeMsg">Wellcome <span class="usernameVIP exroll"></span> to <span class="exroll">Roll It!</span> 😌
</h2>
<!-- The dicee and players timeline -->
<h1>Roll It!</h1>
<!-- Player one Dicee -->
<div class="playerOne">
<h3 class="player1">You</h3>
<h4 class="player1Score"></h4>
<img src="images/dice1.png">
</div>
<!-- Player Two Dicee -->
<div class="playerTwo">
<h3 class="player2">Computer</h3>
<h4 class="player2Score"></h4>
<img src="images/dice2.png">
</div>
<!-- BACKGROUND sound for button -->
<audio src="media/diceeSound.mp3"></audio>
<!-- Refresh button "Roll It!" -->
<button onclick="play(); refreshPage();">
<span class="shadow"></span>
<span class="edge"></span>
<span class="front text"> Roll It!
</span>
</button>
<!-- Footer -->
<p id="footer">Made with ❤️ by <strong title="He made this cute website!😍">Halim Shams</strong></p>
<script src="script.js"></script>
</body>
</html>