-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (61 loc) · 2.24 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
<!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>El Restaurante De Demonios</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="icon.png" type="image/x-icon">
</head>
<body>
<header>
<div class="black">
<h1 class="title">El Restaurante De Demonio</h1>
</div>
<h2 class="subtitle">De Tudor y Jack</h2>
<a href="#menu" class="viewmore">¿quieres ver un menu?</a>
</header>
<h1 class="mtitle">El Menu</h1>
<div id="menu">
<div class="msection">
<h3 class="header">Entremeses</h3>
<p><b>Arroz</b> - 21</p>
<p><b>Huevos</b> - 40</p>
<p><b>Yogur</b> - 70</p>
<p><b>Maiz</b> - 20</p>
<p><b>Un plato de queso</b> - 100</p>
</div>
<div class="msection">
<h3 class="header">Platos Principales</h3>
<p><b>El Bistek</b> - 1000</p>
<p class="desc">con papas fritas y ajo</p>
<p><b>La hamburguesa</b> - 900</p>
<p class="desc">con papas fritas, tomate, cebolla, lechuga, y queso.</p>
<p><b>Camarones</b> - 850</p>
<p class="desc">con mais, arvejas, y arroz</p>
<p><b>Sándwich</b> - 800</p>
<p class="desc">con lechuga, tomate, y jamon pavo</p>
<p><b>Salmon</b> - 100</p>
<p class="desc">con ajo y arroz</p>
<p><b>Atun</b> - 850</p>
<p class="desc">con aceite y ajo.</p>
</div>
<div class="msection">
<h3 class="header">Bebidas</h3>
<p><b>El Agua Mineral</b> - 20</p>
<p><b>El Café</b> - 40</p>
<p><b>La Cervesa</b> - 50</p>
<p><b>La Leche</b> - 30</p>
<p><b>El Refresco</b> - 50</p>
<p><b>El Vino</b> - 75</p>
</div>
<div class="msection">
<h3 class="header">Postre</h3>
<p><b>El Helado</b> - 500</p>
<p><b>La Leche con chocolata</b> - 400</p>
<p><b>Crepes con chocolata</b> - 600</p>
</div>
</div>
</body>
</html>