If you are really interested to learn or test a HTML script, then here are the steps. There are plenty of tools to create webpages using HTML codes. But I am going to give you the most simple tool to learn HTML.The tool, you will need to use a text editor like “Notepad (for Windows).”

Steps to Create a Webpage in HTML using Notepad:

  1. Open Notepad
  2. Create a New Document (copy and paste the code given below)
  3. Save File in HTML
  4. View the saved File in a Web browser

A list of items with serial numbers is created by using <ol> HTML code. Following is an example showing a list of items with serial numbers from 1 to 5.

The Output

  1. Total Number of Books
  2. Total Number of Journals
  3. Total number of Newspapers
  4. Total number of Theses
  5. Total number of Dissertaions

The Code

<html>
<ol>
  <li>Total Number of Books</li>
  <li>Total Number of Journals</li>
  <li>Total number of Newspapers</li>
  <li>Total number of Theses</li>
  <li>Total number of Dissertaions</li>
</ol>
</html>