0% found this document useful (0 votes)
2 views1 page

HTML Tags 50 Examples

The document provides an overview of basic HTML elements and their purposes. It includes descriptions of structural elements like <html>, <head>, and <body>, as well as formatting tags such as <b>, <i>, and <u>. Additionally, it covers lists, links, images, and other common HTML components.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views1 page

HTML Tags 50 Examples

The document provides an overview of basic HTML elements and their purposes. It includes descriptions of structural elements like <html>, <head>, and <body>, as well as formatting tags such as <b>, <i>, and <u>. Additionally, it covers lists, links, images, and other common HTML components.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

<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>

You might also like