-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoffee.html
More file actions
38 lines (29 loc) · 705 Bytes
/
coffee.html
File metadata and controls
38 lines (29 loc) · 705 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Code Food!</title>
<link rel="stylesheet" href="beverages.css">
</head>
<body>
<header>
<h1>Coffee Is King</h1>
</header>
<nav>
<ul>
<li><a href="http://www.starbucks.com">Starbucks</a></li>
<li><a href="https://www.yelp.com/search?find_desc=Coffee+%26+Tea&find_near=seattle-center-monorail-seattle">Everyone Else</a></li>
</ul>
</nav>
<section>
<img src="coffee.jpeg" />
<br />
<article>
<h2>Coffee</h2>
<p>If you need a pick me up, try Coffee.</p>
</article>
</section>
<footer>
© Food Company 2018
</footer>
</body>
</html>