-
Notifications
You must be signed in to change notification settings - Fork 0
/
repuestos.html
115 lines (110 loc) · 4.71 KB
/
repuestos.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>.:RENT SMART:.</title>
<link rel="stylesheet" href="estilos.css">
<link rel="stylesheet" href="calculadora.css">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Barlow+Condensed" rel="stylesheet">
<script src="js/js.js"></script>
</head>
<body>
<div class="caja1">
<header>
<div>
<img src="IMG/11111.jpg">
</div>
</header>
<nav>
<a href="index.html"><span class="icon-home"></span>Inicio</a>
<a href="renta.html"><span class="icon-truck"></span>Renta de Autos</a>
<a href="#"><span class="icon-wrench"></span>Repuestos</a>
</nav>
<aside>
<table>
<form name="calculadora">
<th>
CALCULADORA
</th>
<tr>
<td>
<input readonly type="text" id="texto" maxlength=10 size=24>
</td>
</tr>
<tr>
<td>
<input readonly type="text" id="texto2" size=15>
<!--<input type="button" class="rojo" value="Erase" id="erase">-->
<input type="button" class="rojo" value="CE">
<input type="button" class="rojo" value="C">
</td>
</tr>
<tr>
<td>
<!--<input type="button" class="rojo" value="MC">-->
<input type="button" class="azul" value="7">
<input type="button" class="azul" value="8">
<input type="button" class="azul" value="9">
<input type="button" class="rojo" value="/">
<!--<input type="button" class="azul" value="sqrt" style="width:20%;">-->
</td>
</tr>
<tr>
<td>
<!-- <input type="button" class="rojo" value="MR">-->
<input type="button" class="azul" value="4">
<input type="button" class="azul" value="5">
<input type="button" class="azul" value="6">
<input type="button" class="rojo" value="*">
<!-- <input type="button" class="azul" value="%">-->
</td>
</tr>
<tr>
<td>
<!-- <input type="button" class="rojo" value="MS">-->
<input type="button" class="azul" value="1">
<input type="button" class="azul" value="2">
<input type="button" class="azul" value="3">
<input type="button" class="rojo" value="-">
<!--<input type="button" class="azul" value="^">-->
</td>
</tr>
<tr>
<td>
<!-- <input type="button" class="rojo" value="M+">-->
<input type="button" class="azul" value="0">
<!--<input type="button" class="azul" value="+/-">-->
<input type="button" class="azul" value=".">
<input type="button" class="rojo" value="+">
<input type="button" class="rojo" value="=">
<!--<input type="button" class="rojo" value="1/X">-->
</td>
</tr>
</form>
</table>
</aside>
<section class="principal">
<article>
<h2 class="titulo">REPUESTOS</h2>
<p class="parrafos">Contamos con el stock de respuestos más amplios de la región.</p>
<div id="repuestos">
<img class="repuestos" src="IMG/repuesto1.jpg">
<img class="repuestos" src="IMG/repuesto2.png">
<img class="repuestos" src="IMG/repuesto3.png">
<img class="repuestos" src="IMG/repuesto4.png">
</div>
</article>
</section>
<footer>
<p>RENTA SMART EL SALVADOR</p>
<p>Contamos con el respaldo de una de las empresas de renta auto más grandes del mundo con oficinas en más de 172 países, en los aeropuertos y ciudades más importantes.</p>
<div class="social">
<a href="#"><span class="icon-facebook"></span></a>
<a href="#"><span class="icon-twitter"></span></a>
<a href="#"><span class="icon-instagram"></span></a>
</div>
</footer>
</div>
</body>
</html>