forked from ArthurHoaro/learningAlphabet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (48 loc) · 1.47 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
<!DOCTYPE html>
<html>
<head>
<title>AlphaBaby</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="libs/jquery-1.8.2.min.js"></script>
<script src="libs/jquery.mobile-1.2.0.min.js"></script>
<link rel="stylesheet" href="libs/jquery.mobile-1.2.0.css" />
<link rel="stylesheet" href="styles/style.css" />
</head>
<body>
<div data-role="page">
<div data-role="header">
<h2>- Accueil -</h2>
</div><!-- /header -->
<div data-role="content" class="menu">
<div class="ui-grid-a">
<div class="ui-block-a">
<a href="apprentissage_menu.html" data-role="button" rel="external" data-ajax="false" >
<img id="Logo" src="images/idea.png">
</a>
<h3>Apprendre</h3>
</div>
<div class="ui-block-b">
<a href="jeux.html" data-role="button" rel="external" data-ajax="false">
<img id="Logo" src="images/game.png">
</a>
<h3>Jouer</h3>
</div>
</div><!-- /grid-a -->
<div class="ui-grid-a">
<div class="ui-block-a">
<a href="canvas.html" data-role="button" rel="external" data-ajax="false">
<img id="Logo" src="images/draw.png">
</a>
<h3>Dessiner</h3>
</div>
<div class="ui-block-b">
<a href="progress.html" data-role="button" rel="external" data-ajax="false">
<img id="Logo" src="images/chart.png">
</a>
<h3>Suivi</h3>
</div>
</div><!-- /grid-a -->
</div><!-- /content -->
</div><!-- /page -->
</body>
</html>