-
Notifications
You must be signed in to change notification settings - Fork 0
/
GeoEscape_accueil.html
74 lines (74 loc) · 2.25 KB
/
GeoEscape_accueil.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
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<!--CE FICHIER SERT DE PAGE D'ACCEUIL AU JEU-->
<html lang="fr">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="GeoEscape_acceuil.css">
<link href="https://fonts.bunny.net/css?family=aldrich:400" rel="stylesheet" />
<title>GeoEscape</title>
</head>
<header>
<h1>GeoEscape</h1>
</header>
<body>
<div id="mission_title">
<h3><strong>Descriptif de mission</strong></h3>
</div>
<div id="mission"><strong>
Bonjour Agent(e),<br>
<br>
Rendez-vous vite à Paris, la police vient de découvrir un cadavre. Il est plus que probable qu'il s'agisse d'un meurtre et beaucoup d'indices nous
laissent penser à une possible récidive à l'étranger ! <br>
Le monde veut éviter d'être exposé à un Geo-Killer !! Heureusement il semble que le tueur
soit joueur et aime bien s'amuser avec nous, il laisse de multiple indices partout où il est passé. Montrez lui ce qu'il en coûte de jouer avec nous.
Vous avez carte blanche. <br>
<br>
On compte sur vous!<br>
<br>
Président(e) d'Interpol</strong>
</div>
<div id="form">
<form action="#" method="get" id="inscription">
<fieldset>
<legend>Matricule</legend>
<p><label>Pseudo<input type="text" id="nom"></label></p>
</fieldset>
</form>
</div>
<a href="GeoEscape_jeu.html" id="start">
<form class='button'>
<button id='debut' type='submit' formaction='GeoEscape_jeu.html'>Commencer l'enquête</button>
</form>
</a>
<div id="score_title">
<h3>HIGHSCORES</h3>
</div>
<div id="players">
<h4>Joueur</h4>
</div>
<div id="p1"></div>
<div id="p2"></div>
<div id="p3"></div>
<div id="p4"></div>
<div id="p5"></div>
<div id="p6"></div>
<div id="p7"></div>
<div id="p8"></div>
<div id="p9"></div>
<div id="p10"></div>
<div id="scores">
<h4>Score</h4>
</div>
<div id="t1"></div>
<div id="t2"></div>
<div id="t3"></div>
<div id="t4"></div>
<div id="t5"></div>
<div id="t6"></div>
<div id="t7"></div>
<div id="t8"></div>
<div id="t9"></div>
<div id="t10"></div>
<script src="GeoEscape_acceuil.js"></script>
</body>
</html>