-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (38 loc) · 1.24 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Jeux JS</title>
<link rel="stylesheet" href="styles3.css">
</head>
<body>
<div class="Titre">JEUX PIKA</div>
<div class="score">Score :
<div id="compteur">0</div>
</div>
<div class="titre-record"> Record :
<div id="record">0</div>
</div>
<section>
<div class="jeu">
<div class="perso">
<img src="img/pikachu-cours-unscreen.gif">
</div>
<div class="obstacles"></div>
</div>
</section>
<div class="control">
<button onclick="sauter()" id="sauter">SAUTER</button>
<a href="index.html">START</a>
</div>
<div class="reseau">
<a href="https://www.linkedin.com/in/sebastienlapeyre13/" target="_blank"><img src="./img/LogoLinkedinBlanc(2).png" alt="logo-linkedin"></a>
<a href="https://github.com/Siaam13" target="_blank"><img src="img/LogoGitHub(2).png" alt="logo-github"></a>
</div>
<div class="siam">
@ Siaam13
</div>
<script src="index.js"></script>
</body>
</html>