-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.html
85 lines (52 loc) · 2.66 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
<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="StyleSheet.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=Sriracha&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Montserrat+Alternates&display=swap" rel="stylesheet">
<!-- TITULO DE PESTAÑA CON FAVICON -->
<head>
<title>My Donuts</title>
<link rel="icon" href="Iconos/icono.png" type="image/gif" sizes="18x18">
</head>
<!-- CUERPO DE PAGINA -->
<body>
<!-- ENCABEZADO CON MENU -->
<header>
<a href="Index.html"><img id="logoh" src="Iconos/donuts1.png"></a><a href="Index.html"><h2>My Donuts</h2></a>
</header>
<nav>
<a style="text-decoration: none;" href="CatalogoDonuts.html" >Donuts </a>
<a style="text-decoration: none;" href="NuestrosLocales.html" >Locales </a>
<a style="text-decoration: none;" href="FormulariodeContacto.html" >Contacto </a>
</nav>
<!-- SECTION CON 2 ARTICULOS -->
<section>
<!-- CAJA CON IMAGEN VERTICAL IZQUIERDA -->
<article>
<img id="imghome" src="Imagenes/donuthome3.webp" alt="My Donuts">
</article>
<!-- CAJA DE TEXTO A LA DERECHA -->
<article>
<p><br>The Donuts Factory nació en el 2020 en Villa Luro, CABA, con la intención de crear las mejores Donas para que pruebes algo distinto, único y elaborado con amor, paciencia y calidad.<br><br>
Para eso utilizamos las mejores materias primas del mercado y respetamos el proceso de elaboración y lo hacemos de forma 100% artesanal.
<br><br>
¡Nuestra receta original, fermentada por 48 horas, da como resultado las donas más húmedas, esponjosas y livianas que hayas probado!<br><br>
</p>
</article>
</section>
<!-- FOOTER -->
<footer>
<div id="divfooter1">
<img id="logo" src="Iconos/donuts1.png"><p id="footerfont"> My Donuts</p>
</div>
<div id="divfooter2">
<a href="https://instagram.com"><img src="Iconos/instagram.png" style="width:1.3rem;height:1.3rem; margin-top: 0.6rem;margin-bottom: 0.6rem;"></a>
<a href="https://twitter.com"><img src="Iconos/twitter.png" style="width:1.3rem;height:1.3rem;margin-bottom: 0.6rem;"></a>
<a href="https://Facebook.com"><img src="Iconos/facebook.png" style="width:1.3rem;height:1.3rem;margin-bottom: 0.6rem;"></a><br>
</div>
</footer>
</body>
</html>