-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
44 lines (39 loc) · 1.81 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shifumi</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Chango">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="container">
<h1 class="title">
<span class="animate__animated animate__bounceInDown">Jan</span><span class="animate__animated animate__bounceInUp">Ken</span><span class="animate__animated animate__bounceInDown">Pon</span>
</h1>
<div class="score_container animate__animated animate__delay-1s animate__fadeIn">
<span class="score score__left">0</span>
-
<span class="score score__right">0</span>
</div>
<div class="hand_container">
<div class="hand hand__left animate__animated animate__fadeIn animate__delay-1s">
<img src="" alt="Left hand">
</div>
<div class="hand hand__right animate__animated animate__fadeIn animate__delay-1s">
<img src="" alt="Right hand">
</div>
</div>
<div class="play_button_container">
<button id="play_button" class="btn btn-warning animate__animated animate__bounce">
Play !
</button>
</div>
</div>
<script src="scripts/main.js"></script>
</body>
</html>