-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhorarios.html
149 lines (110 loc) · 3.12 KB
/
horarios.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!doctype html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
<title>TUX BUS</title>
<link rel="stylesheet" href="estilos/estilo.css"/>
<script href="script/scritps.js"></script>
</head>
<body>
<!--encabezado y menu -->
<section class="columna1">
<div id="header">
<img class="bus" src="imgs/bus.png" alt="logo"/>
<a href="index.html"><img class="eti" src="imgs/etiqueta.png" alt="tuxbus"/></a>
<a href="rutas.html"><img class="tari" src="imgs/rutas.png" alt="distros"/></a>
</div>
<nav class="menu">
<ul>
<li><a href="index.html">Inicio</a></li>
<li>Acerca de...
<ul>
<li><a href="mision.html">Misión</a></li>
<li><a href="vision.html">Visión</a></li>
<li><a href="historia.html">Historia</a></li>
</ul>
</li>
<li> Servicio
<ul>
<li><a href="horarios.html">Horarios</a></li>
<li><a href="rutas.html">Rutas</a></li>
<li><a href="tarifa.html">Tarifa</a></li>
</ul>
</li>
<li><a href="contacto.html">Contacto</a></li>
<li><a href="estadisticas.html">Estadísticas</a></li>
<li><a href="login.html">Login</a></li>
</ul>
</nav>
</section>
<!--contenido -->
<section class="columna2">
<img src="imgs/clock.png" class="bus1">
<br>
<table class="tabla">
<tr>
<thead>
<th>
Día
</th>
<th>
Hora
</th>
<th>
Origen
</th>
<th>
Destino
</th>
<th>
Autobus
</th>
</thead>
</tr>
<tr>
<tbody>
<tr>
<td>
Lunes
</td>
</tr>
<tr>
<td>
Martes
</td>
</tr>
<tr>
<td>
Miércoles
</td>
</tr>
<tr>
<td>
Jueves
</td>
</tr>
<tr>
<td>
Viernes
</td>
</tr>
</tbody>
</tr>
</table>
</section>
<!--area de redes sociales -->
<section class="columna3">
<a class="twitter-timeline" width="300" height="500" href="https://twitter.com/RubiksStore" data-widget-id="323931606626729985">Tweets por @RubiksStore</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</section>
<!--pie de pagina -->
<section class="columna4">
Página desarrollada por estudiantes de la Lic. en Informática UNAM - FESC<br>
Barrón Alvarez Rodrigo, H'Luz Vidales Manuel Eliú, Hernández Dionicio Jorge Adrian, <br>
Lira Parada Dalia Verónica, Rojo García Diana Teresa<br><br>
©Todos los derechos reservados 2013
</section>
</body>
</html>