-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrecipe.html
More file actions
79 lines (67 loc) · 2.38 KB
/
recipe.html
File metadata and controls
79 lines (67 loc) · 2.38 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="script.js"></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<section>
<h1><strong>Katy's Five Ingredient Tomato Soup</strong></h1>
<h5><em>Atherholt family tested and certified delicious!</em></h5>
<input type="button" class='buttontest' value="Show/Hide Photos">
</section>
<div id="pics">
<div>
<img class="img" src="https://3.bp.blogspot.com/-YN2knKeO5iM/VggcVFeP6aI/AAAAAAAAC1I/4DOhW_zQfpE/s640/sopa_tomate_assado_roasted_tomato_soup_1.JPG"></img>
</div>
<div>
<img class="img" src="https://1.bp.blogspot.com/-1tlBGvItFRo/VggcVPKYdBI/AAAAAAAAC1E/VpNlJCj5ObI/s640/sopa_tomate_assado_roasted_tomato_soup_2.JPG"></img>
</div>
<div>
<img class="img" src="https://2.bp.blogspot.com/-96fYQeB3XX4/VggcXeK_EvI/AAAAAAAAC1Y/9Q7NF72RsHI/s640/sopa_tomate_assado_roasted_tomato_soup_4.JPG"></img>
</div>
</div>
<div>
<h3> Ingredients</h3>
<ul class="ingredients">
<li>
<input type="checkbox" id="cans" name="cans">
<label for="ossm">2 Cans of Italian-seasoning diced tomatoes</label>
</li>
<li>
<input type="checkbox" id="onion" name="onion">
<label for="ossm1">1 Yellow onion (chopped)</label>
</li>
<li>
<input type="checkbox" id="garlic" name="garlic">
<label for="ossm2">1 Clove of garlic minced</label>
</li>
<li>
<input type="checkbox" id="cream" name="cream">
<label for="ossm3">1 Cup of heavy cream</label>
</li>
</ul>
<h3> Directions </h3>
<p>
<ol>
<li>
<input type="checkbox" id="cook" name="ossm5">
<label for="ossm">Combine onion, garic and tomatoes in med/high heat pot, stirring well, for 10 minutes</label>
</li>
<li>
<input type="checkbox" id="blend" name="ossm6">
<label for="ossm1">Pour the mixture into a blender and blend on medium for three minutes before pouring them back into the pot</label>
</li>
<li>
<input type="checkbox" id="add" name="ossm7">
<label for="ossm2">Slowly add the cream and seasoning in, to taste </label>
</li>
<li>
<input type="checkbox" id="stir" name="ossm8">
<label for="ossm3">Stir until evenly blended and serve hot topped with melted parmesan cheese</label>
</li>
</ol>
</p>
</div>
</body>
</html>