How would you create a list with no visual indicators (bullets or numbers)?
It can't be done with HTML alone; you'd have to use CSS
Using <ol> with a style attribute set to "none"
<ol>
style
Using <ul> with a type attribute set to "none"
<ul>
type
Using <li> with a style attribute set to "none"
<li>