-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
72 lines (69 loc) · 2.47 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
63
64
65
66
67
68
69
70
71
72
<!-- Fix a fictional restaurant using Box Model properties height, width, padding, borders and margins. -->
<!DOCTYPE html>
<html>
<head>
<title>Davies Burgers Menu</title>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Roboto:100,500,700|Oswald:300,400,700"
rel="stylesheet">
<link rel="stylesheet"
type="text/css"
href="reset.css">
<link rel="stylesheet"
type="text/css"
href="style.css">
</head>
<body>
<!-- Navigation Section -->
<nav>
<img src="https://s3.amazonaws.com/codecademy-content/courses/web-101/unit-6/htmlcss1-img_burger-logo.svg" />
<span><a href="#">MENU</a></span>
<span><a href="#">NUTRITION</a></span>
<span><a href="#">ORDER</a></span>
<span><a href="#">LOCATIONS</a></span>
</nav>
<!-- Content Section -->
<div class="content">
<!-- Content Header -->
<div class="header">
<h1>BBQ BACON BURGER</h1>
</div>
<!-- Content Body -->
<div class="body">
<p>
Our BBQ Bacon Burger features our special house ground blend of wagyu and sirloin, spiced perfectly, and
finished off with just a drop of white truffle oil. A butter grilled brioche bun layered with roasted
red onion, perfectly crispy pork belly, and our hickory smoked BBQ sauce.
</p>
<!-- Order Button -->
<a href="#"
class="button">ORDER NOW</a>
<!-- Nutrition Information -->
<ul class="nutrition">
<li>
<span class="category">CALORIES</span>
<span class="value">678</span>
</li>
<li>
<span class="category">FAT</span>
<span class="value">32</span>
</li>
<li>
<span class="category">PROTEIN</span>
<span class="value">8</span>
</li>
<li>
<span class="category">CARBOHYDRATES</span>
<span class="value">34</span>
</li>
<li>
<span class="category">SODIUM</span>
<span class="value">112</span>
</li>
</ul>
</div>
</div>
</body>
</html>