-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
48 lines (41 loc) · 1.59 KB
/
index.php
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
<?php
$landscape = ['ciel1', 'ciel2', 'ciel3'];
// $landscape = ['ciel1', 'ciel2', 'ciel3', 'cielmsm'];
?>
<!DOCTYPE html>
<html lang="en">
<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>Document</title>
<link rel="stylesheet" href="./src/styles/dino.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
</head>
<body>
<input id="copyInp" type="text" />
<div class="dinogame">
<h1 class="aubert">Vas-y Aubert !</h1>
<div class="game-container">
<div class="game">
<canvas id="canvasFence" width="800" height="300"></canvas>
<canvas id="canvasSheep" width="800" height="300"></canvas>
<canvas id="canvas" width="800" height="300"></canvas>
<div id="score"></div>
<div id="play">
<span class="material-symbols-outlined" id="play_icon">play_circle</span>
<p id="play_p">Lancer ?</p>
</div>
<div id="share">
<span class="material-symbols-outlined" id="share_icon">share</span>
<p id="share_p">Partager</p>
</div>
<div id="highscore">
<p class="highscore_p"></p>
</div>
</div>
</div>
</div>
<script src="./src/scripts/dino.js"></script>
</body>
</html>