HTML_Notes
HTML_Notes
Lists
Unordered List (<ul>)
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
Forms
<form action="submit.php" method="POST">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<button type="submit">Submit</button>
</form>
Tables
<table border="1">
<tr>
<th>Name</th>
<th>Age</th>
</tr>
<tr>
<td>Alice</td>
<td>25</td>
</tr>
</table>
HTML Comments
<!-- This is a comment -->
HTML5 New Elements
<header>Website Header</header>
<nav>Navigation Menu</nav>
<section>Main Content</section>
<article>Article Content</article>
<footer>Footer Information</footer>