-
Notifications
You must be signed in to change notification settings - Fork 0
/
app-2.html
39 lines (32 loc) · 990 Bytes
/
app-2.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.css" />
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.js"></script>
</head>
<body>
<div data-role="page" id="glowna">
<div data-role="header">
Moja super aplikacja!
</div>
<div data-role="content">
<p>Niesamowicie ciekawy tekst, bla, bla, bla. Może szchcesz zobaczyć <a href="#testowa">inną stronę</a>?</p>
</div>
<div data-role="footer">
Bla bla inc.
</div>
</div>
<div data-role="page" id="testowa">
<div data-role="header">
A to strona testowa
</div>
<div data-role="content">
<p>Tadam! Jeśli chcesz, możesz wrócić na stronę <a href="#glowna">główną</a>.</p>
</div>
</div>
</body>
</html>