-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (76 loc) · 2.39 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<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" />
<link rel="stylesheet" href="css/style.css" />
<!--FontAwesome-->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!--Fav Icon-->
<link rel="shortcut icon" href="img/sulpayki_icon.jpg" type="" />
<title>Sulpayki</title>
</head>
<body>
<header class="header">
<a href="./index.html"><img class="logo" src="img/sulpayki.jpg" /></a>
<nav>
<ul class="nav__items">
<li><a href="index.html">Inicio</a></li>
<li><a href="pages/Quienessomos.html">Quienes somos</a></li>
<li><a href="pages/productos.html">Productos</a></li>
<li><a href="pages/nosotros.html">Nosotros</a></li>
<li><a href="pages/contacto.html">Contacto</a></li>
</ul>
</nav>
</header>
<main class="container">
<div class="banner">
<div class="banner__titulo">
<h1>Sulpayki</h1>
</div>
<div class="banner__subtitulo">
<p>
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Earum
aperiam sequi labore deserunt magnam itaque.
</p>
</div>
<img
class="cloud2"
src="https://pngimg.com/uploads/cloud/cloud_PNG28.png"
alt=""
/>
</div>
</main>
<footer class="footer">
<div>
<h3 class="tituloSeccion">Buscanos en nuestras redes</h3>
</div>
<div class="footer__social">
<a
class="img-redes"
href="https://www.facebook.com/Sulpayki-105878654699361/"
target="blank"
>
<img src="./img/facebook.svg" alt="" />
</a>
<a
class="img-redes"
href="https://www.instagram.com/sulpayki_natural/?hl=es-la"
target="blank"
>
<img src="./img/instagram.svg" alt="" />
</a>
</div>
<div class="copyright">
<h3>@Copyright 2022 | Creado por ChrisRT</h3>
</div>
</footer>
</body>
</html>