-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhorario.html
157 lines (127 loc) · 4.99 KB
/
horario.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/jpg" href="./img/logo.png"/>
<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>Horario</title>
<link rel="stylesheet" href="./CSS/reset.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/hamburgers/1.2.1/hamburgers.min.css">
<link rel="stylesheet" href="./CSS/menu_hamburguesa.css">
<link rel="stylesheet" href="./CSS/horarios.css">
<link rel="stylesheet" href="./CSS/footer.css">
</head>
<body>
<!-- Cabecera con menu Hamburguesa -->
<header class="header">
<div class="container">
<h1>
<a href="./index.html"> <img src="./img/logo-blanco.png" alt="Alura" class="logo"></a>
</h1>
</div>
</header>
<button class="panel-btn hamburger hamburger--emphatic" type="button">
<span class="hamburger-box">
<span class="hamburger-inner"></span>
</span>
</button>
<!-- menu -->
<aside class="panel">
<nav class="menu">
<a href="./index.html">Home</a>
<a href="./productos.html">Productos</a>
<a href="./contacto.html">Contacto</a>
<a href="./horario.html">Horario</a>
<a href="https://github.com/SofiDevO/barberia-alura" target="_blank" rel="noreferrer noopener">Ver repositorio</a>
</nav>
</aside>
<!-- Fin de cabecera -->
<main>
<section id="horarios">
<div class="tabla">
<table>
<thead>
<tr>
<th>Día</th>
<th>Horario</th>
</tr>
</thead>
<tbody>
<tr>
<td>Lunes</td>
<td>08h ~ 20h</td>
</tr>
<tr>
<td>Lunes</td>
<td>08h ~ 20h</td>
</tr>
<tr>
<td>Lunes</td>
<td>08h ~ 20h</td>
</tr>
</tbody>
</table>
</div>
</section>
</main>
<!-- Inicio del footer -->
<footer>
<div class="container">
<a href="./index.html">
<div class="logo-footer">
<img src="./img/logo-blanco.png" alt="">
<p>© SofiDev</p>
</div>
</a>
<div class="bloque">
<div class="subtitulo">
<h3>Menú
</h3>
</div>
<div class="enlaces">
<ul>
<li>
<a class="menu-enlace" href="./index.html">inicio</a>
</li>
<li>
<a class="menu-enlace" href="./productos.html">productos</a>
</li>
<li>
<a class="menu-enlace" href="./contacto.html">Contacto</a>
</li>
<li>
<a class="menu-enlace" href="https://github.com/SofiDevO/barberia-alura" target="_blank" rel="noreferrer noopener">Ver repositorio</a>
</li>
</ul>
</div>
</div>
<div class="bloque">
<div class="subtitulo">
<h3>Enlaces importantes</h3>
</div>
<div class="enlaces">
<ul>
<li>
<a class="menu-enlace" href="https://www.linkedin.com/in/ansof89/" target="_blank" rel="noreferrer noopener">LinkedIn</a>
</li>
<li>
<a class="menu-enlace" href="https://github.com/SofiDevO" target="_blank" rel="/"noreferrer noopener">Github</a>
</li>
<li>
<a class="menu-enlace" href="" target="_blank" rel="noreferrer noopener">Proyectos</a>
</li>
<li>
<a class="menu-enlace" href="https://itssofi.dev/" target="_blank" rel="noreferrer noopener">Portafolio</a>
</li>
<li>
<a class="menu-enlace" href="https://platzi.com/p/SofiDev/" target="_blank" rel="noreferrer noopener">Platzi</a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<script src="./js/modules.js" type="module"></script>
</body>
</html>