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>