Online Html Editor

<!DOCTYPE html> <html> <head> <style> ul{ list-style-type: circle; list-style-postion: outside; list-style-image: url('/css/images/smiley.png'); /* If image is not present list style type circle is used */ } </style> </head> <body> <h1>List style type/postion/image property</h1> <ul> <li> Item 1</li> <li> Item 2</li> <li> Item 3</li> <li> Item 4</li> </ul> </body> </html>