-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout-us.php
121 lines (104 loc) · 3.24 KB
/
about-us.php
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
<?php include 'head.php' ?>
<body data-scrolling-animations="true">
<div class="sp-body">
<?php include 'header.php' ?>
<div class="bg-image page-title">
<div class="container-fluid">
<a href="#"><h1>Politicas de privasidad</h1></a>
<div class="pull-right">
<a href="index.php"><i class="fa fa-home fa-lg"></i></a> | <a href="about-us.php">Politicas de privasidad</a>
</div>
</div>
</div>
<div class="container-fluid inner-offset">
<div class="hgroup text-center wow zoomIn" data-wow-delay="0.0s">
<h1>Autotransporte de Carga</h1>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Información de Vehículos</title>
<style>
table {
border-collapse: collapse;
width: 100%;
}
th, td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
}
th {
background-color: #f2f2f2;
}
</style>
</head>
<body>
<h2>Información de Vehículos</h2>
<table>
<thead>
<tr>
<th>Vehículo</th>
<th>Clase</th>
<th>Total Nacional</th>
<th>%</th>
</tr>
</thead>
<tbody>
<tr>
<td>Unidades motrices</td>
<td></td>
<td>632,252</td>
<td>50.5</td>
</tr>
<tr>
<td>Camión de dos ejes</td>
<td>C-2</td>
<td>126,917</td>
<td>20.1</td>
</tr>
<tr>
<td>Camión de tres ejes</td>
<td>C-3</td>
<td>97,041</td>
<td>15.3</td>
</tr>
<tr>
<td>Tractocamión de dos ejes</td>
<td>T-2</td>
<td>3,913</td>
<td>0.6</td>
</tr>
<!-- Agrega las demás filas según sea necesario -->
</tbody>
<!-- Agrega las demás secciones del cuerpo de la tabla según sea necesario -->
</table>
</div>
<div class="bg-image parallax" style="background-image:url(media/bg/4.jpg);">
<div class="container-fluid text-center wow fadeInUp" data-wow-delay="0.3s">
<h1>Contactanos</h1>
<a class="btn btn-success" href="Contactar.php">Contacto directo</a>
</div>
</div>
<?php include 'footer.php' ?>
</div>
<!--Main-->
<script src="js/jquery-1.11.3.min.js"></script>
<script src="js/jquery-ui.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/modernizr.custom.js"></script>
<script src="assets/rendro-easy-pie-chart/dist/jquery.easypiechart.min.js"></script>
<script src="js/waypoints.min.js"></script>
<script src="js/jquery.easypiechart.min.js"></script>
<!--Switcher-->
<script src="assets/switcher/js/switcher.js"></script>
<!--Owl Carousel-->
<script src="assets/owl-carousel/owl.carousel.min.js"></script>
<!-- SCRIPTS -->
<script type="text/javascript" src="assets/isotope/jquery.isotope.min.js"></script>
<!--Theme-->
<script src="js/jquery.smooth-scroll.js"></script>
<script src="js/wow.min.js"></script>
<script src="js/jquery.placeholder.min.js"></script>
<script src="js/smoothscroll.min.js"></script>
<script src="js/theme.js"></script>
</body>
</html>