What is HTML: HTML Introduction Made Easy: A Step-by-Step Tutorial for Beginners

HTML (HyperText Markup Language) is the standard markup language for creating Web pages.

What is HTML: HTML Introduction Made Easy: A Step-by-Step Tutorial for Beginners

What is HTML?

  • Full name of HTML (HyperText Markup Language)
  • The most commonly and widely used markup language for building websites is HTML.
  • HTML explains how a web page is structured properly.
  • There are several series that makeup HTML.
  • HTML elements instruct the browser on how to present the material.
  • Content is identified by HTML elements such as "this is a Heading," "this is a Paragraph," "this is a link," and so forth.

Basic HTML Page

<!DOCTYPE html>
<html>
    <head>
        <title>Page Title</title>
    </head>
    <body>
        <h1>BlogyHub</h1>
        <p>My First Blog OF HTML In BlogyHub WebSite.</p>
    </body>
</html>

A description of the example

  • This document is defined as an HTML5 document by the declaration.
  • An HTML page's root element is theTag
  • Meta Details describing the HTML page are contained in theTag.
  • The HTML page's title, which appears in the tab or title bar of the browser, is specified by the