-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontacto.html
More file actions
80 lines (76 loc) · 3.05 KB
/
contacto.html
File metadata and controls
80 lines (76 loc) · 3.05 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="estilo.css">
<title>SportShoes</title>
</head>
<body>
<div class="contenedor">
<header>
<div class="logo-titulo">
<a href="index.html">
<i class="fa-regular fa-circle-dot"></i>
<h1>SportShoes</h1>
</a>
</div>
<nav id="nav">
<a href="index.html">Inicio</a>
<a href="tienda.html">Tienda</a>
<a href="blog.html">Blog</a>
<a href="contacto.html" class="selected">Contacto</a>
<span id="close-responsive">
<i class="fa-solid fa-xmark"></i>
</span>
</nav>
<div id="nav-responsive">
<i class="fa-solid fa-bars"></i>
</div>
<div class="carrito">
<span class="total-compra">$ 55,000.00</span>
<a href="carrito.html">
<span class="icono-carrito">
<i class="fa-solid fa-bag-shopping"></i>
<div class="total-item-carrito">
2
</div>
</span>
</a>
</div>
</header>
<section class="contenedor-seccion">
<div class="fondo-seccion"></div>
<div class="header-seccion">
<div class="col">
<strong><span class="link-blanco">Inicio</span> / Contacto</strong>
</div>
<div class="centro">
<h2>Contacto</h2>
</div>
<div class="col busqueda">
<strong> </strong>
</div>
</div>
<section class="contacto">
<div class="fila">
<div class="col">
<form action="">
<input type="text" placeholder="Nombre">
<input type="text" placeholder="Correo">
<textarea name="" id="" placeholder="Mensaje"></textarea>
<button class="btn-contacto">Enviar Consulta</button>
</form>
</div>
<div class="col derecha">
<h2>CONTACTNOS <br>AHORA</h2>
<img src="img/contacto.png" alt="">
</div>
</div>
</section>
</section>
</div>
<script src="script.js"></script>
</body>
</html>