-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.html
43 lines (43 loc) · 1.05 KB
/
list.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<title>Grampa Bob's Recipes</title>
<link
rel="stylesheet"
type="text/css"
href="recipes.css"
/>
<style>
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
</style>
</head>
<body>
<header>
<nav>
<a href="#">Home</a>
</nav>
</header>
<main>
<h1>Grampa Bob's Family Recipes</h1>
<h2>"Because you have a family now, you have to feed 'em."</h2>
<div>
<figure>
<h3><a href="detail.html">Secret Chili</a></h3>
<img
src="https://howtofeedaloon.com/wp-content/uploads/2014/11/turk-chili-feature.jpg"
alt="Photo of chili in a cast iron pot"
/>
<figcaption>"Rating ★★★★☆"</figcaption>
</figure>
</div>
</main>
<footer class="footer">
<p>Made with love by Grampa Bob</p>
</footer>
</body>
</html>