xFactorSchool.com(Beta)
How to Do Examples
Python Examples
HTML Examples
Code Examples
C Code Examples
C++ Code Examples
C# Code Examples
Java Code Examples
Python Code Examples
HTML Code Examples
CSS Code Examples
JavaScript Code Examples
Online Editor
C Code Editor
C++ Code Editor
C# Code Editor
Java Code Editor
Python Code Editor
HTML Code Editor
CSS Code Editor
JavaScript Code Editor
Practice how to create an unordered list in HTML
HTML Online Editor
Run Code
More HTML Sample Codes
<!DOCTYPE html> <html> <head> <title>Unordered List in HTML</title> <!-- Title of the page--> </head> <body> <!-- elements of the body will be displayed --> <h1>Examples of Unordered List in HTML</h1> <hr/> <!-- <ul> is used for unordered list in html page --> <p>Use HTML <ul>) tag to create an unordered list.<p> <p>An unordered list with square type.<p> <ul type="square"> <!-- <ul> other type are disc, circle and none --> <li>Python</li> <li>C#</li> <li>Java</li> <li>HTML</li> <li>CSS</li> </ul> <p>An unordered list with none type.<p> <ul type="none"> <li>Python</li> <li>C#</li> <li>Java</li> <li>HTML</li> <li>CSS</li> </ul> </body> </html>