-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcobertura.html
178 lines (169 loc) · 7.77 KB
/
cobertura.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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Transportes Malfavon</title>
<!-- Sets initial viewport load and disables zooming -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- SEO -->
<meta name="keywords" content="">
<meta name="description" content="">
<!-- Compatibility -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta http-equiv="cleartype" content="on">
<!-- Favicon - generated with http://www.favicomatic.com/ -->
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="favicon/apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="favicon/apple-touch-icon-114x114.png" />
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="favicon/apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="favicon/apple-touch-icon-144x144.png" />
<link rel="apple-touch-icon-precomposed" sizes="60x60" href="favicon/apple-touch-icon-60x60.png" />
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="favicon/apple-touch-icon-120x120.png" />
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="favicon/apple-touch-icon-76x76.png" />
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="favicon/apple-touch-icon-152x152.png" />
<link rel="icon" type="image/png" href="favicon/favicon-196x196.png" sizes="196x196" />
<link rel="icon" type="image/png" href="favicon/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/png" href="favicon/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="favicon/favicon-16x16.png" sizes="16x16" />
<link rel="icon" type="image/png" href="favicon/favicon-128.png" sizes="128x128" />
<meta name="application-name" content="Little Crow"/>
<meta name="msapplication-TileColor" content="#009C9F" />
<meta name="msapplication-TileImage" content="favicon/mstile-144x144.png" />
<meta name="msapplication-square70x70logo" content="favicon/mstile-70x70.png" />
<meta name="msapplication-square150x150logo" content="favicon/mstile-150x150.png" />
<meta name="msapplication-wide310x150logo" content="favicon/mstile-310x150.png" />
<meta name="msapplication-square310x310logo" content="favicon/mstile-310x310.png" />
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="style.css">
<!-- Google font(s) -->
<link href="http://fonts.googleapis.com/css?family=Open+Sans:300,400,600,800,700,400italic,600italic,700italic,800italic,300italic" rel="stylesheet" type="text/css">
<!-- Font awesome -->
<!-- <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> -->
<!-- HTML5 shim, for IE6-8 support of HTML5 elements. All other JS at the end of file. -->
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
<!-- Typekit -->
<script src="https://use.typekit.net/uqx4euq.js"></script>
<script>try{Typekit.load({ async: true });}catch(e){}</script>
</head>
<body>
<header class="[ container ]">
<a href="index.html"><img class="[ logo ]" src="img/logo.png"></a>
<!-- menú desktop -->
<div class="[ menu-desktop ][ hidden-xs ][ pull-right ][ relative top-30 ]">
<a href="index.html">Inicio</a>
<a href="nosotros.html">Nosotros</a>
<a href="servicios.html">Servicios</a>
<a href="flotilla.html">Flotilla</a>
<a href="cobertura.html">Cobertura</a>
<a href="contacto.html">Contacto</a>
</div>
<!-- menú movil -->
<div class="[ visible-xs ][ pull-right ][ relative top-10 ]">
<a type="button" data-toggle="modal" data-target="#modal-header">
<img class="[ svg icon icon--iconed icon--stroke icon--thickness-3 ][ color-primary ]" src="icons/navigation.svg">
</a>
</div>
<div id="modal-header" class="[ modal fade ]" role="dialog">
<div class="[ modal-dialog ]">
<!-- Modal content-->
<div class="[ modal-content modal-menu-movil ]">
<div class="[ modal-header ]">
<button type="button" class="close" data-dismiss="modal">
<img class="[ svg icon icon--iconed--xsmall icon--stroke icon--thickness-3 ][ color-light ]" src="icons/close.svg">
</button>
</div>
<div class="[ modal-body ]">
<ul>
<a href="index.html"><li>Inicio</li></a>
<a href="nosotros.html"><li>Nosotros</li></a>
<a href="servicios.html"><li>Servicios</li></a>
<a href="flotilla.html"><li>Flotilla</li></a>
<a href="cobertura.html"><li>Cobertura</li></a>
<a href="contacto.html"><li>Contacto</li></a>
</ul>
</div>
</div>
</div>
</div>
</header>
<section>
<div class="[ margin-bottom ][ bg-image bg-image-cobertura rectangle-large ][ color-light ][ relative ]">
<div class="[ bg-filter-dark ][ width-100 ][ height-100 ]">
<div class="[ container ]">
<div class="[ row ]">
<div class="[ col-xs-12 col-sm-5 col-md-4 ][ center-full ][ text-center ]">
<h2 class="[ no-margin--top ]">Cobertura</h2>
<p class="[ no-margin ]">Con nuestras rutas del Pacífico, Sureste y Bajío tenemos la posibilidad de cubrir un 80% del territorio nacional.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="[ container padding--sides--xsm ]">
<div class="[ row ]">
<div class="[ col-xs-12 ]">
<img class="[ img-responsive ][ center-block ]" src="img/cobertura-mapa.png" alt="Mapa Rutas Cobertura">
</div>
<div class="[ col-sm-6 col-md-offset-2 col-md-4 ]">
<img class="[ img-responsive ][ margin-bottom ]" src="img/rutas.png" alt="Transportes Malfavon">
</div>
<div class="[ col-sm-6 ][ margin-bottom ]">
<h2 class="[ margin-top-bottom--xsmall margin-left ][ color-primary ][ fw-400 ]">Rutas</h2>
<div class="[ shape shape-quaternary-darker ]">
<h3 class="[ margin-top-bottom--xsmall margin-left ][ color-light ][ fw-400 ]">Pacífico</h3>
</div>
<div class="[ shape shape-tertiary ]">
<h3 class="[ margin-top-bottom--xsmall margin-left ][ color-light ][ fw-400 ]">Sureste</h3>
</div>
<div class="[ shape shape-secondary ]">
<h3 class="[ margin-top-bottom--xsmall margin-left ][ color-light ][ fw-400 ]">Bajío</h3>
</div>
</div>
</div>
</section>
<footer>
<div class="[ container ]">
<div class="[ row ][ text-center ]">
<div class="[ col-sm-4 ]">
<img class="[ img-responsive ][ margin-auto margin-bottom ]" src="img/trailer_malfavon_footer.png" alt="">
<a href="#">
<p>Aviso de Privacidad</p>
</a>
</div>
<div class="[ col-sm-3 ]">
<img class="[ svg icon icon--iconed--medium icon--stroke icon--thickness-1 ][ color-light ][ margin-bottom--small ]" src="icons/phone-circle.svg">
<a href="tel:+525558726600" class="[ color-light ]">
<p class="[ no-margin ]">58726600</p>
</a>
<a href="tel:+018005231320" class="[ color-light ]">
<p>01800 523 1320</p>
</a>
</div>
<div class="[ col-sm-5 ]">
<img class="[ svg icon icon--iconed--medium icon--stroke icon--thickness-1 ][ color-light ][ margin-bottom--small ]" src="icons/location-pin-1.svg">
<p >Fracción 3 Carretera Cuautitlán Tepotzotlan km 3 s/n, Col. San Mateo Ixtacalco,Cuautitlán Izcalli, Estado de México,
C.P. 54713</p>
</div>
</div>
</div>
</footer>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.1.0/js/bootstrap.min.js"></script>
<script src="js/functions.js"></script>
<script src="js/plugins.js"></script>
<script>
$( document ).ready(function() {
/**
* On ready
**/
imgToSvg();
/**
* Triggered events
**/
});
</script>
</body>
</html>