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 Web browser

The Output

Welcome to Web of Online Resources. This is 1st paragraph.

Welcome to Web of Online Resources. This is 2nd paragraph.

Welcome to Web of Online Resources. This is 3rd paragraph.

The Code

<html>
<body>
<p style="color:green">Welcome to Web of Online Resources. This is 1st paragraph.</p>
<p style="color:red">Welcome to Web of Online Resources. This is 2nd paragraph.</p>
<p style="color:blue">Welcome to Web of Online Resources. This is 3rd paragraph.</p>
</body>
</html>