-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
105 lines (91 loc) · 3 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
104
105
<!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">
<title>Practica_Pasteleria</title>
<style>
*{
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
header {
height: 85px;
color: #4008517e;
text-align: center;
padding: 0;
}
div {
width: 100%;
height: 20px;
background-color: #400851d7;
}
nav {
float: left;
width: 30%;
height: 700px;
padding-left: 3%;
padding-top: 0px;
background-color: #1f271ed7;
}
nav ul {
list-style-type: none;
padding: 0;
}
a {
text-decoration: none;
color: #eeeeee;
}
article {
float: left;
padding-left: 0;
width: 67%;
height: 700px;
background-color: #400851d7;
}
.section1::after {
content: "";
display: table;
clear: both;
}
.p1 {
color: #4008517e;
font-size: 22px;
}
.p2 {
color: #cdc9c9;
font-weight: 100;
}
</style>
</head>
<body>
<header>
<div></div>
<h1>PASTELERÍA -C O L I B R Í-</h1>
</header>
<section class="section1">
<nav>
<img src="..\Pasteleria_Colibri\img\pasteleria.png" alt="Pastelería Colibrí" width="420px" height="420px">
<br><br>
<ul>
<li><b><a href="..\Pasteleria_Colibri\html\quienes_somos.html">Quienes somos</a></b></li>
<br>
<li><b><a href="..\Pasteleria_Colibri\html\pasteles.html">Pasteles</a></b></li>
<br>
<li><b><a href="..\Pasteleria_Colibri\html\pedidos.html">Haz tu pedido aquí</a></b></li>
<br>
<li><b><a href="..\Pasteleria_Colibri\html\sucursales.html">Sucursales</a></b></li>
</ul>
</nav>
<article>
<a href="..\Pasteleria_Colibri\html\pedidos.html" target="_blank"><img src="..\Pasteleria_Colibri\img\preparacion.jpg" alt="Preparacion de pastel" width="1000xp" height="700xp"></a>
</article>
</section>
<footer align="center">
<p class="p1"><b>SIGUE NUESTRAS REDES SOCIALES</b></p>
<a href="X"><img src="https://anasaenzdeburuaga.com/wp-content/uploads/2019/01/redes-sociales-farmacia.png" alt="Redes sociales" width="200px" height="100px"></a>
<br><br>
<p class="p2">Derechos Reservados Colibrí 2022 ©</p>
</footer>
</body>
</html>