HTML Tutorial

HTML stands for HyperText Markup Language.

When we surf the web, the content that is displayed in the browser is HTML. HTML document is parsed and rendered by the browsers.

In this series of HTML tutorials, you will learn different elements available in HTML and how to use them.

Example

The following is a basic example of HTML page with a heading and paragraph.

index.html

</>
Copy
<!DOCTYPE html>
<html>
  <head>
    <style>
      p {
        color: grey;
      }
    </style>
  </head>
  <body> 
    <h1>Heading 1</h1>
    <p>This is a paragraph.</p>
  </body>
</html>

Let’s get started with learning the HTML topics.