Start with HTML

It this tutorial, we will learn about but are the basic requirements to start with the HTML. We mainly need two software to start with HTML which are: –

  • Text Editor
  • Web Browser

Text Editor: –

We need Text Editor to write HTML code. There are lots of Text Editors are available in the market and most of them are free. You can use any Text Editor it depends on your choice even you can use Notepad. But I will use Notepad++ in this entire series because it is easy to use and much more convenient than the ordinary Notepad.

Web Browser: –

After a Text Editor, the second software which we need is a web browser. We need a web browser to check web pages after writing HTML code you can use any web browser like Edge, Firefox. But I will use Google Chrome in this entire series

These are the main software which we need to start with HTML. Let’s Look at this basic HTML Program.

<!DOCTYPE html>
<html>
  <head>
    <title>Title Tag</title>
  </head>
  <body>
    <h1>Basic Requirements to Start HTML</h1>
    <p>Text Editor</p>
    <p>Web Browser</p>
  </body>
</html>

 

Spread the love
Scroll to Top
×