# HTML Introduction
1. `<html>`: This tag encloses the entire HTML content.
2. `<head>`: This is where meta-information about the document is placed, such as
the page title.
3. `<title>`: Defines the document's title, which is displayed in the browser
tab.
4. `<body>`: Contains the visible content of the web page.
5. `<h1>` to `<h6>`: Headings of various sizes.
6. `<p>`: Paragraph.
7. `<a>`: Hyperlink to link text or images.
8. `<img>`: Insert images.
9. `<ul>`: Unordered list.
10. `<ol>`: Ordered list.
11. `<li>`: List item.
Example of a simple HTML file using these tags:
```html
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
</head>
<body>
<h1>Welcome to my website</h1>
<p>This is a paragraph.</p>
<h2>A link to another webpage:</h2>
<a
href="[Link]
target="_blank">Click here</a>
<h2>An inserted image:</h2>
<img src="[Link]" alt="Description of the image">
<h2>An unordered list:</h2>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<h2>An ordered list:</h2>
<ol>
<li>Item A</li>
<li>Item B</li>
<li>Item C</li>
</ol>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
</head>
<body>
<h1>Welcome to my website</h1>
<p>This is a paragraph.</p>
<h2>A link to another webpage:</h2>
<a
href="[Link]
ick here</a>
<h2>An inserted image:</h2>
<img
src="[Link]
alt="Description of the image">
<h2>An unordered list:</h2>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<h2>An ordered list:</h2>
<ol>
<li>Item A</li>
<li>Item B</li>
<li>Item C</li>
</ol>
</body>
</html>