-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (59 loc) · 2.59 KB
/
index.html
File metadata and controls
62 lines (59 loc) · 2.59 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Patagonian Pirates - Plomería en Punta Arenas</title>
<link rel="stylesheet" href="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<main>
<section class="hero">
<div class="hero-content">
<h1>Plomería con Corazón en Punta Arenas</h1>
<p>Estamos cansados de los precios abusivos y la falta de profesionalismo. Por eso decidimos hacer algo al respecto.</p>
<a href="https://wa.me/15625763892" class="whatsapp-button" target="_blank">
<i class="fab fa-whatsapp"></i> ¡Agenda tu consulta por 1.000 pesos!
</a>
</div>
</section>
<section class="team">
<h2>Los Piratas</h2>
<div class="team-grid">
<div class="team-member">
<img src="images/javi.jpeg" alt="Javi - Plomero Profesional" class="team-photo">
<h3>Javi</h3>
<p>La que arregla todo</p>
</div>
<div class="team-member">
<img src="images/anthony.jpeg" alt="Anthony - Plomero Profesional" class="team-photo">
<h3>Anthony</h3>
<p>El que resuelve problemas</p>
</div>
</div>
</section>
<section id="nosotros" class="about">
<h2>Nuestra Historia</h2>
<div class="features">
<div class="feature">
<h3>¿Por qué lo hacemos?</h3>
<p>Nos cansamos de ver cómo la gente sufre con plomeros que cobran fortunas por trabajos mediocres</p>
</div>
<div class="feature">
<h3>Nuestra Promesa</h3>
<p>Precios justos, trabajo honesto y soluciones reales para tu hogar</p>
</div>
<div class="feature">
<h3>Nuestro Compromiso</h3>
<p>Trabajamos hasta que el problema esté completamente resuelto</p>
</div>
</div>
</section>
</main>
<script src="script.js"></script>
</body>
</html>