-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (41 loc) · 1.17 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link href="style.css" rel="stylesheet">
<script src="script.js"></script>
<title>Práctica 5</title>
</head>
<body>
<h1>Menú del día</h1>
<div>
<section>
<h2>Primer plato</h2>
<ol>
<li>Ensalada césar</li>
<li>Ensaladilla de mariscos</li>
<li>Verduras a la parrilla</li>
<li>Huevos rellenos</li>
<li>Coliflor gratinada</li>
</ol>
</section>
</div>
<div>
<section>
<h2>Segundo plato</h2>
<ol>
<li>Pollo al chilindrón</li>
<li>Risotto con setas</li>
<li>Secreto a la brasa</li>
<li>Merluza a la vasca</li>
<li>Migas</li>
</ol>
</section>
</div>
<div>
<button type="button" class="btn btn-success" onclick="pedir();" >Elegir menú</button>
</div>
</body>
</html>