<html> - Root element of HTML page
<html></html>
<head> - Contains meta and title
<head><title>My Page</title></head>
<title> - Page title
<title>My Website</title>
<body> - Visible content
<body>Hello World</body>
<h1> - Main heading
<h1>Welcome</h1>
<p> - Paragraph
<p>This is a paragraph</p>
<br> - Line break
Hello<br>World
<hr> - Horizontal line
<hr>
<b> - Bold text
<b>Bold Text</b>
<i> - Italic text
<i>Italic Text</i>
<u> - Underline
<u>Underline</u>
<strong> - Important bold text
<strong>Important</strong>
<em> - Emphasized text
<em>Emphasis</em>
<mark> - Highlight text
<mark>Highlight</mark>
<small> - Small text
<small>Small Text</small>
<a> - Link
<a href="[Link]
<img> - Image
<img src="[Link]" alt="Image">
<ul> - Unordered list
<ul><li>Apple</li></ul>
<ol> - Ordered list
<ol><li>Item 1</li></ol>
<li> - List item
<li>Item</li>