-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcourses.html
74 lines (74 loc) · 2.68 KB
/
courses.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/shared/navbar.css">
<link rel="stylesheet" href="styles/shared/footer.css">
<link rel="stylesheet" href="styles/courses.css">
<title>Cursos - DeCafé</title>
</head>
<body>
<header>
<!-- navbar -->
<nav>
<a class="logo" href="/index.html" >Blog DeCafé</a>
<ul>
<li><a href="#">Nosotros</a></li>
<li><a href="/courses.html">Cursos</a></li>
<li><a href="#">Contacto</a></li>
</ul>
</nav>
<!-- hero -->
<div class="hero">
<h1>Blog de café con consejos y cursos</h1>
<p>Aprende de los expertos con las mejores recetas y consejos</p>
</div>
</header>
<!-- main section -->
<main>
<section class="courses">
<h2>Nuestros Próximos Cursos y Talleres</h2>
<div class="table-container">
<table>
<thead>
<tr>
<th>Imagen</th>
<th>Título</th>
<th>Precio</th>
<th>Cupo</th>
</tr>
</thead>
<tbody>
<tr>
<td><img src="img/curso1.jpg" alt="Técnicas de extracción de café"></td>
<td>Técnicas de extracción de café</td>
<td>Gratis</td>
<td>20</td>
</tr>
<tr>
<td><img src="img/curso2.jpg" alt="Taller para Tostar y Moler Granos"></td>
<td>Taller para Tostar y Moler Granos</td>
<td>$15.00</td>
<td>30</td>
</tr>
<tr>
<td><img src="img/curso3.jpg" alt="4 Recetas de Café para Principiantes"></td>
<td>4 Recetas de Café para Principiantes</td>
<td>Gratis</td>
<td>20</td>
</tr>
</tbody>
</table>
</div>
</section>
</main>
<!-- footer -->
<footer>
<div class="footer-content">
<div class="footer-logo">Blog DeCafé</div>
<p>© 2024 Blog DeCafé. Todos los derechos reservados.</p>
</div>
</footer>
</body>
</html>