-
Notifications
You must be signed in to change notification settings - Fork 3
/
multipage.html
37 lines (37 loc) · 1.23 KB
/
multipage.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
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<meta name="viewport"
content="width=device-width, initial-scale=1">
<link rel="stylesheet"
href="http://code.jquery.com/mobile/1.4.0/jquery.mobile-1.4.0.min.css" />
<script src="http://code.jquery.com/jquery-2.0.3.min.js">
</script>
<script src="http://code.jquery.com/mobile/1.4.0/jquery.mobile-1.4.0.min.js">
</script>
<body>
<div data-role="page" id="page_accueil">
<div data-role="header">
<h1>Accueil</h1>
</div>
<div role="main" class="ui-content">
<p>Première page affichée dès le début.</p>
<p>Appel de la <a href="#page_deux">page 2</a></p>
</div>
<div data-role="footer">
<h4>Page Footer</h4>
</div>
</div>
<div data-role="page" id="page_deux">
<div data-role="header"><h1>Page 2</h1></div>
<div role="main" class="ui-content">
<p>Cette zone n'est pas affichée au début. Nous sommes sur la deuxième page.</p>
<p><a href="#page_accueil">Retour à l'accueil</a></p>
</div>
<div data-role="footer"><h4>Page Footer</h4></div>
</div>
</body>
</meta>
</head>
</html>