Complete_HTML_Notes
Complete_HTML_Notes
1. Introduction to HTML
HTML is the standard language for creating web pages. It uses tags enclosed in < > to structure
content.
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>Welcome to HTML</h1>
<p>This is a paragraph.</p>
</body>
</html>
| Tag | Description |
|--------------|-------------------------------------------------|
| Tag | Description |
|--------------|--------------------------------------|
4. Lists
<ol>
<li>Item 1</li>
<li>Item 2</li>
</ol>
<li>Item 1</li>
<li>Item 2</li>
</ul>
<dl>
<dt>HTML</dt>
</dl>
Hyperlinks:
Images: