-
Notifications
You must be signed in to change notification settings - Fork 0
/
ejercicio1.html
107 lines (89 loc) · 3.23 KB
/
ejercicio1.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
<body>
<table>
<div id="container">
<nav id="topnav">
<a href="index.html">HOME</a> |
<a href="about.html">ABOUT US</a> |
<a href="menu.html">MENU</a> |
<a href="contact.html">CONTACT US</a>
</nav>
<div id="content">
</table>
<h1>The good breakfast</h1>
<pre>
Buen código y buen café, cada día!
</pre>
<p>Here you will find all sorts of delicious treats
</p>
<figure>
<img src="https://i.postimg.cc/htxcJGB6/ZKkCecn.jpg" width="400" alt="healthy breakfast">
<figcaption>powered by biscuit.</figcaption>
</figure>
</div>
<p>Our commitment is to use <strong>impeccable</strong> sourcing and <strong>quality</strong> ingredients to help
you code.An ongoing collaboration between the classroom staff and the development
team allow us to iterate our content and give our students the coding 'fruits and
vegetables' -mainly made of JavaScript- that they need to grow as a healthy
developer.</p>
<ul>Menú
<li>Cafés <ul>
<li>Café</li>
<li>Americano</li>
<li>Latte Machiatto</li>
<li>Capuccino</li>
</ul>
</li>
<li>Tés<ul>
<li>Earl Grey</li>
<li>Té verde</li>
<li>Rooibos</li>
</ul>
</li>
<table>
<tr>
<th>Café</th>
<th>Tés</th>
</tr>
<tr>
<td>Café</td>
<td>Earl Grey</td>
<tr>
<td>Americano</td>
<td>Té verde</td>
<tr>
<td>Latte Machiatto</td>
<td>Rooibos</td>
</tr>
</tr>
<tr>
<td>Capuccino</td>
</tr>
</table>
<form action="" method="post">
<button type="submit">Reservas aquí</button>
<br><br>
<label for="name">Nombre</label>
<input id="name" type="text">
<button type="submit">Save</button>
<br><br>
<p>Elija un servício</p>
<input type="radio" name= "menu" id="radio"> <label for="radio">Desayuno</label>
<input type="radio" name= "menu" id="radio"> <label for="radio">Merienda</label>
<br><br>
<p>Comensales</p>
<input type="radio" name="comensales" id="radio"> <label for="radio">1</label>
<input type="radio" name="comensales" id="radio"> <label for="radio">2</label>
<input type="radio" name="comensales" id="radio"> <label for="radio">3</label>
<input type="radio" name="comensales" id="radio"> <label for="radio">4</label>
<br><br>
<button type="submit">Aceptar datos</button>
</form>
<p>
<a href="mailto:[email protected]">Contact Us</a>
</p>
<footer>
<p class="love">From the oven with love</p>
<time datatime= "9:00">9:00</time>
</footer>
</div>
</body>