-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (78 loc) · 2.42 KB
/
index.html
File metadata and controls
81 lines (78 loc) · 2.42 KB
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
<body>
<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">
<h1>The IronHack Breakfast Place</h1>
<!-- Insert your preformated text here -->
<p>Here you will find all sorts of delicious treats
</p>
<figure>
<img src="http://i.imgur.com/DeOVU5R.jpg" width="400" alt="healthy breakfast">
<figcaption>powered by brekkie.</figcaption>
</figure>
</div>
<!-- Insert paragraph here -->
<p>Our commitment is to use impeccable sourcing
and quality 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>
<!-- Insert your menu here -->
<pre>
Code everyday and enjoy your coffee every morning! :)
</pre>
<h3>Our food</h3>
<table>
<tr>
<th>Our coffee</th>
<th>Our teas</th>
</tr>
<tr>
<td>Cafe Latte</td>
<td>Earl Grey</td>
</tr>
<tr>
<td>Americano</td>
<td>English Breakfast</td>
</tr>
<tr>
<td>Capuccino</td>
<td>Herb Tea</td>
</tr>
</table>
<!-- Insert your reservations form here -->
<h3>Reservations here!</h3>
<form action="" method="post">
<label for="name">Name:</label>
<input id="name" type="text">
<br>
<!--<label for="no. of guests">No. of guests:</label>
<input id="no. of guests" type="text">-->
<label for="date">Date:</label>
<input id="date" type="text">
<br>
<label for="time">Time:</label>
<input id="time" type="text">
<br>
<br>
<fieldset>
<input type="radio" id="radio"> <label> <for="radio">Caffe Latte</label>
<input type="radio" id="radio"> <label> <for="radio">Americano</label>
<input type="radio" id="radio"> <label> <for="radio">Capuccino</label>
<input type="radio" id="radio"> <label> <for="radio">Earl Grey</label>
<input type="radio" id="radio"> <label> <for="radio">English Breakfast</label>
<input type="radio" id="radio"> <label> <for="radio">Herbal Tea</label>
</fieldset>
</form>
<footer>
<p class="love">Made with love by Ironhack</p>
</footer>
</div>
</body>