-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
103 lines (95 loc) · 4.18 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
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
<!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">
<link rel="stylesheet" href="css/estilos.css">
<link rel="stylesheet" href="css/tablet.css"
media="screen and (min-width: 600px)">
<link rel="stylesheet" href="css/desktop.css"
media="screen and (min-width: 1000px)">
<link rel="shortcut icon" href="images/hcode-cafe.svg" type="image/x-icon">
<title>NCODE☕</title>
</head>
<body>
<header class="header">
<figure class="header-logo">
<a href="index.html">
<img class="header-logo-img" src="images/hcode-cafe.svg" alt="Logo de la pagina web" title="Ncode logo">
</a>
</figure>
<div class="header-search">
<figure><img src="https://i.imgur.com/jnhQlVG.png" alt="Icono de buscador"></figure>
<input type="search" name="buscador" id="buscador" placeholder="Buscador">
</div>
<nav class="header-nav">
<ul class="nav-content">
<a href="#" class="nav-li">
<li>Inicio🏡</li>
</a>
<a href="pages/coffee.html" class="nav-li">
<li>Café💚</li>
</a>
<a href="pages/AboutNcode.html" class="nav-li">
<li>Acerca de Ncode✨</li>
</a>
<a href="pages/contact.html" class="nav-li">
<li>Contactenos📮</li>
</a>
</ul>
</nav>
</header>
<main class="main">
<div class="main-container">
<article class="main-container-imag">
<div class="container-imag-text">
<h1 class="imag-text">BE GREEN FRIENDLY💚</h1>
<P>
En Ncode trabajamos continuamente para reforzar nuestro compromiso con el Medio Ambiente🌲.
#NcodeIsGreen
</P>
</div>
</article>
<section class="main-container-section">
<article class="container-section-box">
<h2>¿EL MEJOR CAFÉ ES ARTESANAL?</h2>
<p>
Es sorprendente cómo los distintos métodos de elaboración pueden realzar características concretas de su café.
Ayúdenos a explotar todo el potencial de su café, para que
cada taza sea perfecta.
</p>
<a class="section-decoration" href="pages/coffee.html"><p>CONOCE MÁS...</p></a>
</article>
</section>
<article class="main-container-articule">
<figure class="container-articule-figure">
<img class="figure-imag" src="images/beans.svg" alt="Banner con información">
<img class="figure-imag" src="images/sack.svg" alt="Banner con información">
<img class="figure-imag" src="images/machine.svg" alt="Banner con información">
</figure>
<p>De granos recién cosechados hasta tu taza de café caliente, de diferentes países como: Guatemala, Kenya, Ethiopia,
Italia y por supuesto Colombia.</p>
</article>
</div>
</main>
<footer class="footer">
<div class="footer-redes">
<figure>
<a href="https://www.facebook.com" target="_blank" rel="link">
<img id="red1" src="https://i.imgur.com/s4nYsxA.png" alt="Facebook">
</a>
<a href="https://www.instagram.com" target="_blank" rel="link">
<img id="red2" src="https://i.imgur.com/KT88dEW.png" alt="Instagram">
</a>
<a href="https://www.twitter.com" target="_blank" rel="link">
<img id="red3" src="https://i.imgur.com/dyEkXbV.png" alt="Twitter">
</a>
</figure>
</div>
<p>
Derechos Reservados ©Josué Avalos
</p>
</footer>
</body>
</html>