-
Notifications
You must be signed in to change notification settings - Fork 12
/
game_chasse_start.html
50 lines (47 loc) · 1.8 KB
/
game_chasse_start.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 name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Chasse aux parasites ~ EduPalu ~ FCRM & Fongwama</title>
<link rel="icon" href="favicon.ico" type="image/x-icon"/>
<link href="css/bootstrap.min.css" rel="stylesheet" />
<link href="css/style.css" rel="stylesheet" />
<link href="css/game_chasse_style.css" rel="stylesheet" />
</head>
<body>
<header class="jumbotron">
<a href="index.html">
<img src="img/logo.png" alt="logo EduPalu" class="center-block" />
</a>
</header>
<section class="container">
<h1>Chasse aux parasites</h1>
<p>
Ce jeu consiste à répérer les parasites du paludisme dans un échantillon de sang.
</p>
<p>
Les parasites sont de couleur rouge ou violet et ressemblent à cela :
<figure>
<img src="img/para_1.jpg" alt="Parasite example" class="img-thumbnail" />
<img src="img/para_2.jpg" alt="Parasite example" class="img-thumbnail" />
<img src="img/para_3.jpg" alt="Parasite example" class="img-thumbnail" />
<img src="img/para_4.jpg" alt="Parasite example" class="img-thumbnail" />
<img src="img/para_5.jpg" alt="Parasite example" class="img-thumbnail" />
<img src="img/para_6.jpg" alt="Parasite example" class="img-thumbnail" />
</figure>
</p>
<p>
Trouvez-les le plus rapidement possible !
</p>
<form action="game_chasse_play.html">
<button class="btn btn-primary center-block" type="submit">Commencer la partie</button>
</form>
</section>
<footer>
<p>
<a href="http://www.fongwama.com">Fongwama</a> - 2016
</p>
</footer>
</body>
</html>