LISTS This are two attributes
- Ol : Used to Sentence in serial Order.
- Ul : Used to keep Sentences in unorder list.
Some information
- <li> will be used before sentences.
Syntax of tag is
< ul> <li> Hello <li> <ul> Program
INPUT
<html> <head> <body> I like three fruits <ul> <li>Mango</li> <li>Apple</li> <li>Guava</li> </body> </html>
OUTPUT
![]()