The following example shows the use of list tag and its attributes. so follows the given step

Start the Notepad editor.

Now enter the following HTML code in Notepad.

  • <html>
  • <head>
  • <title> List  Tag </title>
  • </head>
  • <body>
  • <h4>Programming Language</h4>
  • <ol  type="i">
  • <li>C</li>
  • <li>C++</li>
  • <li>JAVA</li>
  • <li>VB</li>
  • </ol>
  •  
  • <h4>DBMS</h4>
  • <ul  type="circle">
  • <li>Access</li>
  • <li>SQL  Server</li>
  • <li>Oracle</li>
  • <li>MySQL</li>
  • </ul>
  •  
  • <dl>
  • <dt> Computer </dt>
  • <dd> Computer is an electronics data processing machin.<dd>
  • </dl>
  •  
  • </body>
  • </html>

Save this file with "link.htm" file name

Now open this file in Internet Explorer(or in other wb browser).