-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcotizar.html
More file actions
492 lines (454 loc) · 30.4 KB
/
cotizar.html
File metadata and controls
492 lines (454 loc) · 30.4 KB
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>General Mantención</title>
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<script src="https://kit.fontawesome.com/d097713e30.js" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400&display=swap" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
</head>
<body>
<div class="background-image">
<div class="content">
<nav class=" navbar navbar-dark navbar-expand-lg">
<div class="container">
<img src="images/logo/logo.png" class="navbar-brand" alt="">
<button class="navbar-toggler" type="button" data-bs-toggle="offcanvas" data-bs-target="#offcanvasNavbar" aria-controls="offcanvasNavbar" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="offcanvas offcanvas-end text-white bg-dark align-items-lg-end" tabindex="-1" id="offcanvasNavbar" aria-labelledby="offcanvasNavbarLabel" role="dialog" aria-modal="true">
<div class="offcanvas-header">
<img src="images/logo/logo.png" class="navbar-brand" alt="">
<button type="button" class="btn-close btn-close-white" data-bs-dismiss="offcanvas" aria-label="close"></button>
</div>
<div class="offcanvas-body text-white">
<ul class="nav nav-pills navbar-nav mb-lg-0 d-flex justify-content-center">
<li class="nav-item px-2">
<a class="nav-link text-center px-2" aria-current="page" href="index.html">Inicio</a>
</li>
<li class="nav-item px-2">
<a class="nav-link text-center " href="trabajos.html">Trabajos y proyectos</a>
</li>
<li class="nav-item px-2">
<a class="nav-link text-center" aria-current="page" href="cotizar.html">Cotizar un trabajo</a>
</li>
<li class="nav-item px-2">
<a class="nav-link text-center px-2" aria-current="page" href="ventas.html">Cotizar materiales</a>
</li>
<li class="nav-item px-2">
<a class="nav-link text-center" href="contacto.html" type="button">Contacto</a>
</li>
</ul>
</div>
</div>
</div>
</nav>
<div>
<br>
<br>
<h2 class="text-center pt-2 text-white" style=" text-shadow: 0.5px 1px #ff8000;">Cotizar un trabajo</h2>
<hr width="45%" style="height:1px;color:white;background-color:white; margin: auto;" />
<h1 class="text-center text-white pt-4">¿Que trabajo deseas cotizar?</h1>
<div class="d-grid gap-2 d-md-flex justify-content-md-center">
<button type="button" class="btn btn-orange m-2" data-bs-toggle="modal" data-bs-target="#InstalacionEstufa" data-bs-whatever="@mdo" type="button">Instalación de combustión</button>
<button type="button" class="btn btn-orange m-2" data-bs-toggle="modal" data-bs-target="#InstalacionPellet" data-bs-whatever="@mdo" type="button">Instalación de estuda a pellet</button>
<button type="button" class="btn btn-orange m-2" data-bs-toggle="modal" data-bs-target="#InstalacionPasto" data-bs-whatever="@mdo" type="button">Instalación de pasto en rollo</button>
<button type="button" class="btn btn-orange m-2" data-bs-toggle="modal" data-bs-target="#InstalacionCeramica" data-bs-whatever="@mdo" type="button">Instalacion de ceramica</button>
<a type="button" class="btn btn-orange m-2" href="contacto.html">Otro tipo de trabajo</a>
</div>
</div>
</div>
<div class="modal modal-lg fade" id="InstalacionEstufa" tabindex="-1" aria-hidden="true" aria-labelledby="exampleModalLabel">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Instalación de Combustión</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close">
</button>
</div>
<div class="modal-body">
<div class="numero-pisos d-flex col-lg-12" id="numero-pisos">
<div class="pisos m-2" data-numero="un-piso">
<button type="button" class="btn btn-orange">1 piso</button>
</div>
<div class="pisos m-2" data-numero="dos-pisos">
<button type="button" class="btn btn-orange">2 pisos</button>
</div>
</div>
<div class="materiales row col-lg-12" data-numero="un-piso">
<div class="col-lg-6">
<h3>Materiales 5" pulgadas</h3>
<table class="table table-bordered">
<thead>
<th scope="col">Materiales</th>
<th scope="col">Precio</th>
</thead>
<tbody>
<tr>
<th scope="row">- 1 Kit de instalación de 5"pulgadas
<ul class="list-group">
<h6>El kit contiene:</h6>
<ul class="list-group">
<li class="list-group-item list-group-item-success">Cañones Acero Inox 5" (4 unidades)</li>
<li class="list-group-item list-group-item-info">Cañones galvanizados 8" (2 unidades)</li>
<li class="list-group-item list-group-item-warning">Gorro 5" (1 unidad)</li>
<li class="list-group-item list-group-item-danger">Embudillo 8" (1 unidad)</li>
<li class="list-group-item list-group-item-success">Manta (1 unidad)</li>
<li class="list-group-item list-group-item-info">Tapacielo 5"/360mm (1 unidad)</li>
<li class="list-group-item list-group-item-warning">Lana Mineral (saco 5 kg)</li>
<li class="list-group-item list-group-item-danger">Remaches (18 unidades)</li>
</ul>
</ul>
</th>
<th scope="row">
$134.900
</th>
</tr>
<tr>
<th>- 1 escantillon galvanizado 8" pulgadas</th>
<th scope="row">
$20.000
</th>
</tr>
<tr>
<th>Precio Total con materiales incluidos</th>
<th scope="row">
$220.000 <br>
<p class="text-secondary"><small>(Estos valores son referenciales y estan sujetos a cambios por el fabricante)</small></p>
</th>
</tr>
<tr>
<th>Precio sin materiales</th>
<th>$60.000</th>
</tr>
</tbody>
</table>
<img src="images/kits/kit5.jpg" class="img-fluid" width="350px" height="350px" alt="">
</div>
<div class="col-lg-6">
<h3>Materiales 6" pulgadas</h3>
<table class="table table-bordered">
<thead>
<th scope="col">Materiales</th>
<th scope="col">Precio</th>
</thead>
<tbody>
<tr>
<th scope="row">- 1 Kit de instalación de 6"pulgadas
<ul class="list-group">
<h6>El kit contiene:</h6>
<ul class="list-group">
<li class="list-group-item list-group-item-success">Cañones Acero Inox 6" (4 unidades)</li>
<li class="list-group-item list-group-item-info">Cañones galvanizados 10" (2 unidades)</li>
<li class="list-group-item list-group-item-warning">Gorro 6" (1 unidad)</li>
<li class="list-group-item list-group-item-danger">Embudillo 10" (1 unidad)</li>
<li class="list-group-item list-group-item-success">Manta (1 unidad)</li>
<li class="list-group-item list-group-item-info">Tapacielo 6"/450mm (1 unidad)</li>
<li class="list-group-item list-group-item-warning">Lana Mineral (saco 5 kg)</li>
<li class="list-group-item list-group-item-danger">Remaches (18 unidades)</li>
</ul>
</ul>
</th>
<th scope="row">
$139.900
</th>
</tr>
<tr>
<th>- 1 escantillon galvanizado 10" pulgadas</th>
<th>$20.000</th>
</tr>
<tr>
<th>Precio Total con materiales incluidos</th>
<th scope="row">
$220.000 <br>
<p class="text-secondary"><small>(Estos valores son referenciales y estan sujetos a cambios por el fabricante)</small></p>
</th>
</tr>
<tr>
<th>Precio sin materiales</th>
<th>$60.000</th>
</tr>
</tbody>
</table>
<img src="images/kits/kit6.jpg" class="img-fluid" width="350px" height="350px" alt="">
</div>
</div>
<div class="materiales row" data-numero="dos-pisos">
<div class="col-lg-6">
<h3>Materiales 5" pulgadas</h3>
<table class="table table-bordered">
<thead>
<th scope="col">Materiales</th>
<th scope="col">Precio</th>
</thead>
<tbody>
<tr>
<th scope="row">- 1 Kit de instalación de 5"pulgadas
<ul class="list-group">
<h6>El kit contiene:</h6>
<ul class="list-group">
<li class="list-group-item list-group-item-success">Cañones Acero Inox 5" (4 unidades)</li>
<li class="list-group-item list-group-item-info">Cañones galvanizados 8" (2 unidades)</li>
<li class="list-group-item list-group-item-warning">Gorro 5" (1 unidad)</li>
<li class="list-group-item list-group-item-danger">Embudillo 8" (1 unidad)</li>
<li class="list-group-item list-group-item-success">Manta (1 unidad)</li>
<li class="list-group-item list-group-item-info">Tapacielo 5"/360mm (1 unidad)</li>
<li class="list-group-item list-group-item-warning">Lana Mineral (saco 5 kg)</li>
<li class="list-group-item list-group-item-danger">Remaches (18 unidades)</li>
</ul>
</ul>
</th>
<th scope="row">
$134.900 <br>
<p class="text-secondary"><small>(Estos valores son referenciales y estan sujetos a cambios por el fabricante)</small></p>
</th>
</tr>
<tr>
<th>- 1 escantillon galvanizado 8" pulgadas</th>
<th scope="row">
$20.000
</th>
</tr>
<tr>
<th>- 2 Cañones galvanizado 8"</th>
<th scope="row">
$40.000 ($20.000 c/u)
</th>
</tr>
<tr>
<th>- 2 Cañones Acero Inox 5" pulgadas </th>
<th scope="row">
$30.000 ($15.000 c/u)
</th>
</tr>
<tr>
<th>Precio Total con materiales incluidos</th>
<th scope="row">
$ 305.000 <br>
<p class="text-secondary"><small>(Estos valores son referenciales y estan sujetos a cambios por el fabricante)</small></p>
</th>
</tr>
<tr>
<th>Precio sin materiales</th>
<th>$80.000</th>
</tr>
</tbody>
</table>
<img src="images/kits/kit5.jpg" class="img-fluid" width="350px" height="350px" alt="">
</div>
<div class="col-lg-6">
<h3>Materiales 6" pulgadas</h3>
<table class="table table-bordered">
<thead>
<th scope="col">Materiales</th>
<th scope="col">Precio</th>
</thead>
<tbody>
<tr>
<th scope="row">- 1 Kit de instalación de 6"pulgadas
<ul class="list-group">
<h6>El kit contiene:</h6>
<ul class="list-group">
<li class="list-group-item list-group-item-success">Cañones Acero Inox 6" (4 unidades)</li>
<li class="list-group-item list-group-item-info">Cañones galvanizados 10" (2 unidades)</li>
<li class="list-group-item list-group-item-warning">Gorro 6" (1 unidad)</li>
<li class="list-group-item list-group-item-danger">Embudillo 10" (1 unidad)</li>
<li class="list-group-item list-group-item-success">Manta (1 unidad)</li>
<li class="list-group-item list-group-item-info">Tapacielo 6"/450mm (1 unidad)</li>
<li class="list-group-item list-group-item-warning">Lana Mineral (saco 5 kg)</li>
<li class="list-group-item list-group-item-danger">Remaches (18 unidades)</li>
</ul>
</ul>
</th>
<th scope="row">
$139.900 <br>
<p class="text-secondary"><small>(Estos valores son referenciales y estan sujetos a cambios por el fabricante)</small></p>
</th>
</tr>
<tr>
<th>- 1 escantillon galvanizado 10" pulgadas</th>
<th>$20.000</th>
</tr>
<tr>
<th>- 2 Cañones galvanizado 10"</th>
<th scope="row">
$40.000 (20.000 c/u)
</th>
</tr>
<tr>
<th>- 2 Cañones Acero Inox 6" pulgadas </th>
<th scope="row">
$40.000 ($20.000 c/u)
</th>
</tr>
<tr>
<th>Precio Total con materiales</th>
<th scope="row">
$239.000 <br>
<p class="text-secondary"><small>(Estos valores son referenciales y estan sujetos a cambios por el fabricante)</small></p>
</th>
</tr>
<tr>
<th>Precio sin materiales</th>
<th>$80.000</th>
</tr>
</tbody>
</table>
<img src="images/kits/kit6.jpg" class="img-fluid" width="350px" height="350px" alt="">
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal modal-lg fade" id="InstalacionPellet" tabindex="-1" aria-hidden="true" aria-labelledby="exampleModalLabel">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Instalación de estufa a pellet</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close">
</button>
</div>
<div class="modal-body">
<div class="numero-pisos d-flex col-lg-12" id="numero-pisos">
<div class="pisos m-2" data-numero="un-piso">
<button type="button" class="btn btn-orange">1 piso</button>
</div>
<div class="pisos m-2" data-numero="dos-pisos">
<button type="button" class="btn btn-orange">2 pisos</button>
</div>
</div>
<div class="materiales row col-lg-12" data-numero="un-piso">
<div class="col-lg-12">
<h3>Materiales</h3>
<table class="table table-bordered">
<thead>
<th scope="col">Materiales</th>
<th scope="col">Precio</th>
</thead>
<tbody>
<tr>
<th scope="row">- 1 cañon 3 1/4
</th>
<th scope="row">
$15.000 <br>
</th>
</tr>
<tr>
<th>- 1 codo con tapa</th>
<th scope="row">
$15.000
</th>
</tr>
<tr>
<th>- 1 tapacielo acero inoxidable</th>
<th scope="row">
$10.000
</th>
</tr>
<tr>
<th>Precio Total con materiales</th>
<th scope="row">
$100.000 <br>
<p class="text-secondary"><small>(Estos valores son referenciales y estan sujetos a cambios por el fabricante)</small></p>
</th>
</tr>
<tr>
<th>Precio sin materiales</th>
<th scope="row">$60.000</th>
</tr>
</tbody>
</table>
</div>
</div>
<div class="materiales row" data-numero="dos-pisos">
<div class="col-lg-12 text-center">
<p>La instalación de estufa a pellet de 2 pisos es conversable, contactanos.</p>
<div class="d-flex justify-content-center">
<div class="mx-2"><a href="https://wa.me/56990078582?text=Hola,%20me%20gustaría%20cotizar%20instalacion%20de%20%estufa%20a%20pellet%20de%202%20pisos" target="_blank">
<i class="img-thumbnail fab fa-whatsapp fa-2x"
style="color: #25D366;background-color: #cef5dc;"></i></a>
</div>
<div class="mx-2" role="button"><a href="http://facebook.com" target="_blank"><i class="img-thumbnail fab fa-facebook fa-2x"
style="color: #3b5998;background-color: #eceff5;"></i></a>
</div>
<div class="mx-2" role="button"><a href="" target="_blank"><i class="img-thumbnail fa-brands fa-instagram fa-2x"
style="color: #ffffff;background-color: #ff00d4;"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal modal-lg fade" id="InstalacionPasto" tabindex="-1" aria-hidden="true" aria-labelledby="exampleModalLabel">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Instalación pasto en rollo natural</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close">
</button>
</div>
<div class="modal-body">
<h4>Precio</h4>
<table>
<tr>
$5.500 por m2
</tr>
</table>
<div class="border-orange rounded p-3">
<h3>Calcule el precio aqui mismo</h3>
<p><small>anote los metros que quiera instalar de pasto</small></p>
<div class="form-outline col-sm-6 d-flex h-100">
<input type="number" id="formetros" class="form-control w-25" />
<p class="alignment-end">m2</p>
</div>
<button type="submit" onclick="calcular()" class="btn btn-orange my-2">Calcular</button>
<div class="resultado" id="resultado"></div>
</div>
</div>
</div>
</div>
</div>
<div class="modal modal-lg fade" id="InstalacionCeramica" tabindex="-1" aria-hidden="true" aria-labelledby="exampleModalLabel">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Instalación de Ceramica</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close">
</button>
</div>
<div class="modal-body">
<h4>Precio</h4>
<table>
<tr>
$7.000 por m2
</tr>
</table>
<div class="border-orange rounded p-3">
<h3>Calcule el precio aqui mismo</h3>
<p><small>anote los metros que quiera instalar de Ceramica</small></p>
<div class="form-outline col-sm-6 d-flex alignment-end">
<input type="number" id="forMetrosCeramica" class="form-control w-25" />
<p class="alignment-end h-100">m2</p>
</div>
<button type="submit" onclick="calcularCeramica()" class="btn btn-orange my-2">Calcular</button>
<div class="resultadoC" id="resultadoC"></div>
</div>
</div>
</div>
</div>
</div>
<script src="js/index.js"></script>
<script src="js/calcular.js"></script>
<script src="https://kit.fontawesome.com/d097713e30.js" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
</body>
</html>