This repository was archived by the owner on Oct 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathjeux.html
More file actions
55 lines (50 loc) · 1.49 KB
/
jeux.html
File metadata and controls
55 lines (50 loc) · 1.49 KB
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
<!DOCTYPE html>
<html>
<head>
<title>AlphaBaby</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<link rel="stylesheet" href="libs/jquery.mobile-1.2.0.css" />
<link rel="stylesheet" href="styles/style.css" />
<script src="libs/jquery-1.8.2.min.js"></script>
<script src="libs/jquery.mobile-1.2.0.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="header">
<a href="#" data-rel="back" data-icon="arrow-l" data-add-back-btn="true" data-icon="back">Retour</a>
<h1>- Jeux -</h1>
</div><!-- /header -->
<div data-role="content" class="menu">
<div class="ui-grid-a">
<div class="ui-block-a">
<a href="jeu_son.html" data-role="button" rel="external">
<img src="images/megaphone.png" alt="logo">
</a>
<h3>Ecouter</h3>
</div>
<div class="ui-block-b">
<a href="jeu_tri.html" data-role="button" rel="external">
<img alt="logo" src="images/cubes2.png">
</a>
<h3>Ordre Alphabétique</h3>
</div>
</div><!-- /grid-a -->
<div class="ui-grid-a">
<div class="ui-block-a">
<a href="jeu_min2maj.html" data-role="button" rel="external">
<img src="images/ab.jpg" alt="logo">
</a>
<h3>Majuscules</h3>
</div>
<div class="ui-block-b">
<a href="jeu_maj2min.html" data-role="button" rel="external">
<img src="images/ba.jpg" alt="logo">
</a>
<h3>Minuscules</h3>
</div>
</div><!-- /grid-a -->
</div><!-- /content -->
</div><!-- /page -->
</body>
</html>