-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (51 loc) · 1.97 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
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="Tetris Next Gen" content="Ma version de tetris">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="images/logo-ico.png">
<title>Tetris Next Gen</title>
</head>
<body>
<h1>Mon Tetris :</h1>
<div id="wrapper">
<div id="left-div">
<img src="images/logo.png" id="logo">
<hr>
<div id="score-div">
<label> Score: </label>
<label id="score"></label>
</div>
<div id="lines-div">
<label> Lignes: </label>
<label id="lines"></label>
</div>
<hr>
<div class="resume">
<h3>Dev by Roland APPERT</h3>
<p>Utilisez les fleches pour se deplacer :
<br>
<br> - Droite, fleche de droite et gauche, fleche de gauche.<br>
<br> - Fleche du bas pour faire tomber plus rapidement.<br>
<br> - Barre d'espace pour faire touner la pièce.<br>
</p>
</div>
</div>
<div id="game-container">
<img src="images/background.png" id="background">
<canvas id="game-canvas"></canvas>
</div>
</div>
<div class="social ">
<ul>
<li><a href="https://github.com/100sue" target="_blank"><i class="fab fa-github"></i></a></li>
<li><a href="https://www.linkedin.com/in/roland-appert" target="_blank"><i class="fab fa-linkedin"></i></a></li>
<li><a href="#" target="_blank"><i class="fab fa-behance"></i></a></li>
</ul>
</div>
<script src="main.js"></script>
</body>
</html>