In: Computer Science
Write an HTML file that create the following web page.
my first nested list
steps of backing a cake
Important notes:
<!DOCTYPE html>
<html>
<body>
<h2>Steps for baking cake</h2>
<ul>
<li>Gather your ingredients</li>
<ul>
<li>Unsalted butter</li>
<li>Sugar</li>
<li>Salt</li>
<li> vanilla extract</li>
<li>Eggs</li>
</ul>
<li>Preheat the oven to 325 °F (163 °C) and grease and flour
a cake pan. Pound cakes are best baked in deep pans, such as loaf
pans or bundt pans. Use butter or shortening to grease the pan.
Then, sprinkle a light layer of flour into the pan, rotate the pan
until it’s evenly coated, then tap out the excess flour.
</li>
<li>Cream the butter and sugar. Place the butter and sugar in
a mixing bowl and beat them together until the mixture is light,
fluffy and creamy </li>
<li>Add the eggs and vanilla. For best results, add the eggs
one at a time and beat the mixture in between.[6] Keep beating the
mixture until the eggs are completely incorporated.[7]
</li>
<li>Stir in the cake flour. Keep the electric mixer on low or
use a wooden spoon to stir the flour in a bit at a time until it's
just incorporated. Be careful not to overmix it </li>
<li>Pour the batter into the pan. Use a spatula to scrape
down the sides of the bowl.</li>
</ul>
</body>
</html>