-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhomework.html
More file actions
57 lines (50 loc) · 1.14 KB
/
homework.html
File metadata and controls
57 lines (50 loc) · 1.14 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>my website</title>
</head>
<body>
<!-- my favorite food is rice -->
<P><strong>Ingredients need to make Dish</strong></P>
<!-- Unordered list -->
<!-- Ingredient that we need to make Rice -->
<ul>
<li>Measuring cup</li>
<li>Water</li>
<li>Saucepan with lid</li>
<li>Salt</li>
<li>Rice</li>
<li>Wooden Spoon</li>
<li>Fork</li>
</ul>
<!--
Ordered list -->
<P><strong>Detailed step to make dish</strong></P>
<ol>
<li>Boil water and add salt</li>
<!-- inner list -->
<ul>
<li>add 3/4 cup of water in fresh rice</li>
<li>mix 1 teaspoon salt in water</li>
</ul>
<li>Pour in Rice</li>
<!-- inner list -->
<ul>
<li>add rice into boiling water</li>
</ul>
<li>Stir once or just enough to seperate the rice</li>
<!-- inner list -->
<ul>
<li>use wooden spoon to seperate ant clumps</li>
</ul>
<li>Cover the pot and simmer</li>
<!-- inner list -->
<ul>
<li>Be sure lid fit tightly</li>
<li>Turn down heat for 5 minutes</li>
</ul>
<li>flup rice with a fork</li>
</ol>
</body>
</html>