Computer Science, asked by tushardabla, 1 year ago

write HTML code to create number and bulleted list​

Answers

Answered by gs8180920922p4pdq2
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 tarunagurwal
0

<body>

<ol>

<li>any text

<li>any text

<li>any text

</ol>

</body>

Similar questions