list
- First, light the candle.
- Next, open the box.
- Finally, place the three magic items in the box, in this exact order, to complete the spell:
- The book of spells
- The shiny rod
- The goblin statue
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<style>
ul li{
line-height:1.5em;
list-style-type:square;
}
ol li{
list-style-type:lower-alpha;
}
</style>
<body>
<ul>
<li>First, light the candle.</li>
<li>Next, open the box.</li>
<li>Finally, place the three magic items in the box, in this exact order, to complete the spell:
<ol>
<li>The book of spells</li>
<li>The shiny rod</li>
<li>The goblin statue</li>
</ol>
</li>
</ul>
</body>
</html>