You can create a numbered list that looks like an outline by using the following HTML code:
<ol style="list-style-type: lower-alpha">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>
This code will create a numbered list that looks like this:
- Item 1
- Item 2
- Item 3