<ol>
<li>Preheat oven to 425°F</li>
<li>Mix all the ingredients</li>
<li>Dump it all into a greased pan</li>
<li>Bake for 40 minutes</li>
<li>Take out and let cool 30 mintes</li>
<li>Eat</li>
</ol>
<ul>
<li>Eggs</li>
<li>Flour</li>
<li>Water</li>
</ul>
ol {
list-style: none;
counter-reset: steps;
}
ol li {
counter-increment: steps;
}
ol li::before {
content: "Step " counter(steps) ")";
margin-right: 0.5rem;
color: #ff6f00;
}
ul {
list-style-type: "→ ";
list-style-position: inside;
}
This Pen doesn't use any external JavaScript resources.