Defines a paragraph of text.
<p>This is a paragraph of text.</p>
More info: W3C <p> tag
Creates a hyperlink to another page or location.
<a href="https://www.example.com">Visit Example</a>
More info: W3C <a> tag
Embeds an image in the page. Always include an alt attribute for accessibility.
<img src="images/example.jpg" alt="Example Image">
More info: W3C <img> tag
Displays tabular data.
<table border="1">
<tr>
<th>Name</th>
<th>Age</th>
</tr>
<tr>
<td>Alice</td>
<td>25</td>
</tr>
</table>
More info: W3C <table> tag
Collects user input.
<form action="/submit" method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name">
<input type="submit" value="Submit">
</form>
More info: W3C <form> tag