-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRestaurantMenu.html
66 lines (59 loc) · 1.55 KB
/
RestaurantMenu.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
<!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>Document</title>
<style>
* {
margin: 0;
box-sizing: border-box;
font-family: "Lato", sans-serif;
}
body {
height: 60vh;
display: flex;
align-items: center;
justify-content: center;
}
h1{
text-align : center;
padding : 20px;
}
span{
font-size : 15px;
text-decoration : overline;
}
/* Write CSS from here ============= */
.card{
height : 400px;
width : 400px;
background-color : #EBE0C7;
border : 30px solid #7D5A44;
line-height : 25px;
box-shadow : 0 10px 22px 10px rgba(27,38,49,0.1);
color : #7D5A44;
padding : 20px;
}
</style>
</head>
<body>
<div class="card">
<h1>
Les Papilles <br/>
<span>(Menu)</span>
</h1>
<ol>
<li>Cheese Cheddar Burger</li>
<li>Quadro Formaggi Pizza</li>
<li>Overfilled Cheese Lasagna</li>
<li>Mac and Cheese</li>
<li>Mozzarella Linguine</li>
<li>Arabiata Spaghetti</li>
<li>Cadillac Margarita</li>
<li>Harvey Wallbanger</li>
</ol>
</div>
</body>
</html>