-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu.html
More file actions
105 lines (105 loc) · 2.71 KB
/
menu.html
File metadata and controls
105 lines (105 loc) · 2.71 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="it">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<title>Italiano - Menu</title>
<link rel="icon" href="favicon.ico" />
<link rel="stylesheet" href="css/site.css" />
</head>
<body>
<header>
<nav>
<a href="index.html">Home</a>
<a href="menu.html">Menu</a>
<a href="about.html">About</a>
</nav>
</header>
<main>
<div class="hero">
<img src="images/Hero.png" alt="" aria-hidden="true" />
<div class="img-credit">
<a
href="https://www.freepik.es/foto-gratis/conchas-pasta-italiana-champinones-calabacin-salsa-tomate_6933024.htm#fromView=search&page=1&position=12&uuid=a8ddb9f1-88b5-4fa4-bf4f-cc59a69e93d4"
>Designed by Freepik</a
>
</div>
<div class="hero-text">
<h1>Italiano</h1>
<p>Pizzeria Ristorante</p>
</div>
</div>
<div>
<table class="food-table">
<caption>
<h2>Antipasti</h2>
</caption>
<tbody>
<tr>
<th>Futti di mare</th>
<td>$3.99</td>
</tr>
<tr>
<th>Prosciutto di Parma</th>
<td>$4.99</td>
</tr>
<tr>
<th>Groviera</th>
<td>$3.39</td>
</tr>
<tr>
<th>Ciabatta y rúcula</th>
<td>$5.99</td>
</tr>
</tbody>
</table>
<table class="food-table">
<caption>
<h2>Entrata</h2>
</caption>
<tbody>
<tr>
<th>Farfalle alla genovese</th>
<td>$9.99</td>
</tr>
<tr>
<th>Spaghettini alla bolognese</th>
<td>$8.99</td>
</tr>
<tr>
<th>Salsa tartufata</th>
<td>$7.49</td>
</tr>
<tr>
<th>Ciavale salmone panini</th>
<td>$8.39</td>
</tr>
</tbody>
</table>
<table class="food-table">
<caption>
<h2>Bevande</h2>
</caption>
<tbody>
<tr>
<th>Te freddo limone</th>
<td>$0.99</td>
</tr>
<tr>
<th>Te freddo menta</th>
<td>$0.99</td>
</tr>
<tr>
<th>Pompelo</th>
<td>$1.49</td>
</tr>
<tr>
<th>Uva Nera</th>
<td>$2.39</td>
</tr>
</tbody>
</table>
</div>
</main>
<footer>© JC</footer>
</body>
</html>