-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (63 loc) · 2.85 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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ChoHan Bakuchi</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link type="text/css" rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;500&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>ChoHan Bakuchi(A.K.A Japanese Dice game)</h1>
</header>
<main class="wrapper clearfix">
<div class="flex">
<div class="player-0-panel active">
<div class="player-name" id="name-0">Player 1(相手)</div>
<hr>
<div class="player-score" id="score-0">0</div><span>円</span>
</div>
<div class="player-1-panel">
<div class="player-name" id="name-1">Player 2(あなた)</div>
<hr>
<div class="player-score" id="score-1">0</div><span>円</span>
</div>
</div>
<div class='btn'>
<p for="evenorodd">1. Choose even or odd:</p>
<div class = "option">
<button class="even" id="even2">even</button>
<button class="odd" id="odd1">odd</button>
</div>
<p>2. Roll the dice</p>
<button class="btn-roll"><i class="ion-ios-loop"></i>Roll dice</button>
</div>
<div class=flex1>
<img src="./dice5.png" alt="Dice" class="dice0">
<img src="./dice5.png" alt="Dice" class="dice1">
</div>
<div class="description">
<p>Description: ChoHan Bakuchi game is Japanese dice game that user guess even or odd number before rolling the dice. <br>If your guess is right, you win! The first player get 1000, is the final winner!(You are player 2)</p>
</div>
</main>
<footer class="footer">
<p>Bora's
<a aria-label="Bora Linkedin" href="https://www.linkedin.com/in/bora-kim-364715180/" target="_blank" class="btn contact-details">
<i class="fa fa-linkedin"></i>
</a>
</p>
<p>Serin's
<a aria-label="Serin Linkedin"href="https://www.linkedin.com/in/serin-jeon/" target="_blank" class="btn contact-details">
<i class="fa fa-linkedin"></i>
</a>
</p>
<p>© 2020. Bora Kim / Serin Jeon - all rights reserved</p>
</footer>
<script src="app.js"></script>
</body>
</html>