HTML (Hyper Text Markup Language): It is the standard language used to create Web Pages.
It
structures content using tags.
What is HTML?
Defines the structure of a Web Page.
Uses tags inside angle brackets <> .
Meaning of each part
Tag Purpose
<html> Root of the page
<head> Page information
<title> Browser tab title
<body> Visible content
Common HTML Tags:
1. Headings: <h1> main heading, <h2> sub heading, <h3> small heading.
2. Paragraph: <p> This is paragraph </p>
3. Line break: <p> This is my first line. <br> This is my second line.
4. Bold,Italic and Underline text:
a. <b> Bold Text </b>
b. <i> italic Text </i>
c. <u> Underline Text </u>