write HTML code to create number and bulleted list
Answers
Answered by
0
Use the HTML <ul> element to define an unordered list.
Use the CSS list-style-type property to define the list item marker.
Use the HTML <ol> element to define an ordered list.
Use the HTML type attribute to define the numbering type.
Use the HTML <li> element to define a list item.
Answered by
0
<body>
<ol>
<li>any text
<li>any text
<li>any text
</ol>
</body>
Similar questions