-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (31 loc) · 1.06 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Random Meal Planner</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Nuestro CSS -->
<link rel="stylesheet" href="css/style.css">
</head>
<body class="bg-light">
<div class="container py-5">
<h1 class="text-center mb-4">🍽️ Random Meal Planner</h1>
<div class="row justify-content-center mb-4">
<div class="col-md-6">
<button id="generate-btn" class="btn btn-primary w-100 py-3">
¡Generar menú aleatorio!
</button>
</div>
</div>
<div class="row" id="meals-container">
<!-- Comidas generadas aparecerán aquí -->
</div>
</div>
<!-- Bootstrap JS + Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<!-- Nuestro JS -->
<script src="js/app.js"></script>
</body>
</html>