'li' creates one item in a list
<html> <head> <title>li element example</title> </head> <body> <ul type="square"> <li>first item</li> <li>second item</li> <li>third item</li> <li>fourth item</li> <li>fifth item</li> </ul> </body> </html>