Introduction to HTML (Hyper Text Markup Language) ?

March 19, 2025 No Comments » Hits : 348





HTML and Organization :

  1. HTML is a subset of Standard Generalized Markup Language (SGML)
  2. HTML is specified by the World Wide Web Consortium (W3C).

Hyper Text Markup Language HTML Introduction

HTML describes Web Page -

  • HTML stands for Hyper Text Markup Language
  • HTML is not a programming language.
  • HTML is a markup language
  • Markup Language Consists of set of Tags called “markup tags“.
  • Markup Tags are used to describe Web Page using Markup Tags.
  • HTML elements are basic building blocks for the construction of web pages. | Version History

What we can do using HTML ?

  • We can Create Web Page using HTML.
  • We can Format Specific Part of Web Page using HTML.
  • We can Embed JavaScript in order to provide dynamic feature.
  • We can Apply Styles to Webpage Using CSS to look Web Page more interactive and Fresh.
  • We can Provide Server Side Execution Facility by embedding Server Side Scripting inside HTML.

First Look at HTML Tag :

  1. Web Page Consists of HTML tags.
  2. HTML tag is basic building block of Web Page.
  3. HTML Tags are Keywords surrounded with starting angular bracket and closing angular bracket
  4. Generally each Tag comes in a pair except some non closing tags.

Example :

<html>
<body>
<h1>Pritesh</h1>
</body>
</html>
  • <h1> is starting tag
  • </h1> is ending tag
  1. Starting Tag is also known as “Opening Tag“.
  2. Ending Tag is also known as “Closing Tag“.

Incoming search terms: