-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfcc-projects.html
More file actions
30 lines (27 loc) · 934 Bytes
/
Copy pathfcc-projects.html
File metadata and controls
30 lines (27 loc) · 934 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
** start of index.html **
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Chocolate Cake Recipe</title>
</head>
<body>
<h1>Chocolate Cake</h1>
<p>This recipe will guide you to make a soft and delicious homemade chocolate cake.</p>
<h2>Ingredients</h2>
<ul>
<li>2 eggs</li>
<li>1 cup milk</li>
<li>1.5 cups flour</li>
<li>3 tablespoons cocoa powder</li> </ul>
<h2>Instructions</h2>
<ol>
<li>Whisk the eggs and sugar together.</li>
<li>Add the milk and oil,then mix well.</li>
<li>Sift in the flour,cocoa,and baking powder.</li>
<li>Pour into a greased pan and bake at 180°C for 35 minutes.</li>
</ol>
<img src="https://cdn.freecodecamp.org/curriculum/labs/recipe.jpg" alt="Chocolate cake image">
</body>
</html>
** end of index.html **