-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (25 loc) · 925 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Accueil</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.1/css/all.css" integrity="sha384-vp86vTRFVJgpjF9jiIGPEEqYqlDwgyBgEF109VFjmqGmIY/Y4HV4d3Gp2irVfcrp" crossorigin="anonymous">
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<h1>Escape JS</h1>
<h2>Choisir un niveau</h2>
<div id='select-level'>
<i class="fas fa-backward custom-fa-icon back-arrow"></i>
<div>
<i class="fas fa-play custom-fa-icon play-level"></i>
<h5 id='level-nbr'></h5>
</div>
<i class="fas fa-forward custom-fa-icon forward-arrow"></i>
</div>
<!--SERVICE-->
<script src="js/services/storage.js"></script>
<script src="js/index.js"></script>
</body>
</html>