Introduction to HTML - Beginner Guide
HTML (HyperText Markup Language) is the foundation of all web pages. It is used to create
and structure content on the web.
Basic HTML Structure:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
Common HTML Tags:
<h1> to <h6>: Headings
<p>: Paragraph
<a>: Anchor (link)
<img>: Image
<ul>, <ol>, <li>: Lists
Example:
<a href="[Link] Example</a>
This guide is intended for beginners who want to learn how web pages are built using
HTML.