-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
72 lines (67 loc) · 2.2 KB
/
Index.html
File metadata and controls
72 lines (67 loc) · 2.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My First Coding</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 20px;
background-color: #fff5f7;
}
h1 {
color: #ff6b9d;
}
h2 {
color: #ff8fa3;
margin-top: 20px;
}
ul {
background-color: #fffacd;
padding: 20px;
border-radius: 5px;
}
li {
margin: 10px 0;
}
</style>
</head>
<body>
<h1>🍦 My First Coding 🍦</h1>
<p>Welcome! Here are some fun and easy ways to make ice cream that kids will love.</p>
<h2>Easy No-Churn Ice Cream Recipe</h2>
<h3>What You'll Need:</h3>
<ul>
<li>1 can of sweetened condensed milk</li>
<li>2 cups of heavy cream</li>
<li>1 teaspoon of vanilla extract</li>
<li>Your favorite toppings (sprinkles, chocolate chips, fruit)</li>
</ul>
<h3>Steps:</h3>
<ol>
<li>Pour the heavy cream into a bowl</li>
<li>Whip it until stiff peaks form (about 5 minutes with a mixer)</li>
<li>Gently fold in the sweetened condensed milk and vanilla extract</li>
<li>Pour into a container and add your favorite mix-ins</li>
<li>Freeze for at least 6 hours</li>
<li>Scoop and enjoy!</li>
</ol>
<h2>Fun Flavor Ideas for Kids</h2>
<ul>
<li>Strawberry (add pureed fresh strawberries)</li>
<li>Chocolate (add cocoa powder)</li>
<li>Mint Chocolate Chip (add mint extract and chocolate chips)</li>
<li>Birthday Cake (add sprinkles and cake pieces)</li>
</ul>
<h2>Tips for Success</h2>
<ul>
<li>Let kids help with mixing - it's fun!</li>
<li>Keep all ingredients cold before starting</li>
<li>Don't skip the whipping step - it creates the creamy texture</li>
<li>Store in an airtight container for best results</li>
</ul>
<p><strong>Have fun making delicious ice cream with your kids!</strong></p>
</body>
</html>