0% found this document useful (0 votes)
8 views2 pages

Essential HTML Tags with Examples

Uploaded by

egzertal
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)
8 views2 pages

Essential HTML Tags with Examples

Uploaded by

egzertal
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

Basic HTML Tags with Code Examples

<h1> - Heading 1

Example: <h1>This is a Heading</h1>

<p> - Paragraph

Example: <p>This is a paragraph.</p>

<br> - Line Break

Example: Line 1<br>Line 2

<hr> - Horizontal Line

Example: <hr>

<b> - Bold Text

Example: <b>Bold</b>

<i> - Italic Text

Example: <i>Italic</i>

<u> - Underlined Text

Example: <u>Underlined</u>

<a> - Hyperlink

Example: <a href='[Link]

<img> - Image Tag

Example: <img src='[Link]' width='100'>

<ul><li> - Unordered List

Example: <ul><li>Item 1</li><li>Item 2</li></ul>

<ol><li> - Ordered List

Example: <ol><li>Item 1</li><li>Item 2</li></ol>

<table><tr><td> - Table

Example: <table><tr><td>Data</td></tr></table>

<input> - Input Field

Example: <input type='text'>

<button> - Button
Example: <button>Click Me</button>

<div> - Block-level Container

Example: <div>This is a block</div>

<span> - Inline Container

Example: <span>This is inline</span>

You might also like