-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 1.39 KB
/
index.html
File metadata and controls
42 lines (42 loc) · 1.39 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
<!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>Font</title>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Lato:wght@900&family=PT+Serif:ital@1&family=Source+Sans+Pro&display=fallback"
rel="stylesheet"
/>
<link rel="stylesheet" href="CSS/normalize.css" />
<link rel="stylesheet" href="CSS/stylesheet.css" />
</head>
<body>
<div class="container">
<h1>Sweet Potato and Kale Bowl</h1>
<p class="lead">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Reiciendis
quos, inventore nam hic enim aliquid eligendi debitis. Eligendi nisi
laudantium harum voluptatem labore, reprehenderit ut, fuga ab velit
quaerat delectus.
</p>
<img src="images/recipe.jpg" alt="">
<h2>Ingredients</h2>
<h3>For the sweet potato</h3>
<ul>
<li>2 tablespoons olive oil</li>
<li>1 head cauliflower</li>
<li>3 cloves garlic</li>
<li>1 cup milk</li>
</ul>
<h3>For the kale</h3>
<ul>
<li>1 tablespoon bacon fat</li>
<li>3 cups chopped kale</li>
<li>3 cloves garlic minced</li>
</ul>
</div>
</body>
</html>