All About HTML (HyperText Markup Language)
1. What is HTML?
HTML is the standard markup language used to create the structure of web pages.
It acts as the backbone of every website, organizing content with elements and
tags.
HyperText: Refers to links that connect different webpages.
Markup Language: Defines the layout and structure of the content.
2. Features of HTML
Simple to learn and use.
Works with CSS and JavaScript for complete front-end development.
Cross-platform compatibility (works on any browser).
Extensible with newer versions (e.g., HTML5).
3. Basic Structure of an HTML Document
<!DOCTYPE html>
<html>
<head>
<title>My Webpage</title>
</head>
<body>
<h1>Welcome to My Webpage</h1>
<p>This is a paragraph of text.</p>
</body>
</html>
<!DOCTYPE html>: Declares the document as HTML5.
1. What is HTML?
HTML is the standard markup language used to create the structure of web pages.
It acts as the backbone of every website, organizing content with elements and
tags.
HyperText: Refers to links that connect different webpages.
Markup Language: Defines the layout and structure of the content.
2. Features of HTML
Simple to learn and use.
Works with CSS and JavaScript for complete front-end development.
Cross-platform compatibility (works on any browser).
Extensible with newer versions (e.g., HTML5).
3. Basic Structure of an HTML Document
<!DOCTYPE html>
<html>
<head>
<title>My Webpage</title>
</head>
<body>
<h1>Welcome to My Webpage</h1>
<p>This is a paragraph of text.</p>
</body>
</html>
<!DOCTYPE html>: Declares the document as HTML5.