-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDay 3 Challenge 2.html
47 lines (40 loc) · 1.03 KB
/
Day 3 Challenge 2.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
<!DOCTYPE html>
<html>
<head>
<meta name="author" content="Farah Ibrar">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<!-- Add your recipe title here -->
<title>My Recipe</title>
<link href="index.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<!-- Add your <h1> here -->
<h1>How to make Tea</h1>
<!-- we will add the image in a later challenge -->
image
<!-- Add your <p> here -->
<p>This recipe is a delicious dish that you'll love to make!</p>
</header>
<section>
<!-- Add your <h2> here -->
<h2>ingredients</h2>
<!-- Add your <ul> list here -->
<ul>
<li>Tea Bag</li>
<li>Water</li>
<li>Milk - Dairy/Plant based(Optional)</li>
<li>Sugar/Honey(Optional)</li>
</ul>
</section>
<section>
preparation
list
</section>
<footer>
copyright
</footer>
<script src="script.js"></script>
</body>
</html>