-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththird_html.html
More file actions
22 lines (22 loc) · 868 Bytes
/
third_html.html
File metadata and controls
22 lines (22 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<title>Lists</title>
<link rel="stylesheet" type="text/css" href="example_3.css">
</head>
<body>
<h2>Recipe for Potato Soup</h2>
<ol>
<li>Bring chicken broth to a simmer.</li>
<li>Chop potatoes into desired sizes (I do quarters) and add to the broth.</li>
<li>Chop onion half into chunks and add to broth.</li>
<li>Cook bacon.</li>
<li>After bacon has been cooked and placed to the side, slowly add flour to the bacon grease.</li>
<li>Add milk to the oil and flour mixture until it is a milky paste.</li>
<li>Add the milky paste into the broth and stir until it is uniform.</li>
<li>Add milk and stir until the soup becomes desired consistency.</li>
</ol>
<br />
<p>Now we have a creamy loaded potato soup. Enjoy!</p>
</body>
</html>