-
Notifications
You must be signed in to change notification settings - Fork 5
/
index-2.html
31 lines (31 loc) · 988 Bytes
/
index-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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Metropolitano Mobile</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="jquery.mobile/jquery.mobile-1.1.1.min.css" />
<script src="jquery.mobile/jquery-1.7.1.min.js"></script>
<script src="jquery.mobile/jquery.mobile-1.1.1.min.js"></script>
</head>
<body>
<div data-role="page" id="inicio" data-theme="b">
<div data-role="header">
<h1>Metropolitano Mobile</h1>
</div>
<div data-role="content">
<p>Metropolitano es el sistema de transporte urbano que interconecta Lima.</p>
<ul data-role="listview" data-inset="true">
<li><a href="#">Estaciones</a></li>
<li><a href="#">Servicios Principales</a></li>
<li><a href="#">Alimentadores</a></li>
<li><a href="#">Estaciones cercanas</a></li>
<li><a href="#">Contáctenos</a></li>
</ul>
</div>
<div data-role="footer">
<p>Un experimento de Mozilla Perú.</p>
</div>
</div>
</body>
</html>