-
Notifications
You must be signed in to change notification settings - Fork 0
/
contacto.html
93 lines (90 loc) · 4.44 KB
/
contacto.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
<!DOCTYPE html>
<html lang="es">
<head>
<!-- Meta -->
<title>Paf Store</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Fonts -->
<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=Comfortaa:wght@300;700&family=Nunito:ital,wght@0,200;0,400;0,700;0,900;1,200;1,400;1,700;1,900&display=swap" rel="stylesheet">
<!-- Style -->
<link href="styles.pure.css" rel="stylesheet">
<!-- Scripts -->
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-dark fixed-top px-1 px-sm-5 py-3">
<div class="navbar-brand col-4 col-sm-1 mx-auto mx-sm-2 mx-xxl-4 my-auto">
<a href="index.html"><img src="img/navbar.svg" class="img-fluid img-logo img-logo-sm mx-auto" id="logo" alt="Logo"></a>
</div>
<ul class="nav col-10 col-sm-8 mx-0 mx-sm-auto justify-content-center">
<li class="nav-item">
<a class="nav-link px-2 px-sm-4" href="index.html">Inicio</a>
</li>
<li class="nav-item">
<a class="nav-link px-2 px-sm-4" href="sobre-paf.html">Sobre Paf</a>
</li>
<li class="nav-item">
<a class="nav-link px-2 px-sm-4 active" href="#">Contacto</a>
</li>
</ul>
<div class="col-2 col-sm-1 col-xl-1 mx-auto mx-sm-1 mx-xl-2 my-xl-0">
<a class="nav-link" id="instagram" href="https://www.instagram.com/pafstore.cl/"><img src="img/insta.svg" class="img-fluid" alt="Instagram"></a>
</div>
</nav>
<!-- Header -->
<header class="container-fluid bg-primary py-4">
<div class="fade-up row h-100" id="header-content">
<div class="col-12 mx-auto">
<h1 class="display-1 text-fluid text-center text-uppercase">Contacto</h1>
</div>
</div>
</header>
<!-- Main -->
<main>
<section class="container py-5">
<div class="row mb-5">
<h2 class="h4 text-fluid text-center text-uppercase mb-4">Contacto</h2>
<div class="row justify-content-center">
<div class="col-10 col-lg-7 small">
<p>Envía un mensaje directo a nuestra página de <a href="https://www.instagram.com/pafstore.cl/">Instagram</a> para realizar tu pedido. Al entrar en contacto, te enviaremos los detalles de compra.</p>
<p>Puedes realizar un pedido especificando el accesorio que quieres comprar o pedir un accesorio personalizado. Salúdanos y esperámos tu pedido!</p>
</div>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="container-fluid w-100 py-4 flex-shrink-0">
<div class="container py-4">
<div class="row gy-4 gx-5">
<div class="col-xl-4 col-md-6">
<h4 class="h2">Acerca de.</h4>
<p class="small text-muted">Paf Store es una tienda de accesorios de porcelana customizados.</p>
</div>
<div class="col-xl-2 col-md-6">
<h5 class="h6 mb-3">Navegar.</h5>
<ul class="list-unstyled text-muted">
<li><a class="small" href="index.html">Inicio</a></li>
<li><a class="small" href="sobre-paf.html">Sobre Paf</a></li>
<li><a class="small" href="contacto.html">Contacto</a></li>
</ul>
</div>
<div class="col-xl-2 col-md-6">
<h5 class="h6 mb-3">Instagram.</h5>
<ul class="list-unstyled text-muted">
<li><a class="small" href="https://www.instagram.com/pafstore.cl/">@pafstore.cl</a></li>
<li><a class="small" href="https://www.instagram.com/unumeii/">@unumeii</a></li>
<li><a class="small" href="https://www.instagram.com/pudu.graphics/">@pudu.graphics</a></li>
</ul>
</div>
<div class="col-xl-4 col-md-6">
<p class="small strong text-muted">Diseño x Raúl Contreras</p>
</div>
</div>
</div>
</footer>
</body>
</html>