INTERMEDIATE WEB BUILDING
Forms
<form>
<input type="text" placeholder="Name">
<input type="email">
<input type="password">
<button>Submit</button>
</form>
Tables (Data Structure)
<table>
<tr>
<th>Name</th>
<th>Age</th>
</tr>
</table>
Semantic HTML
<header></header>
<nav></nav>
<section></section>
<article></article>
<footer></footer>
Media Embedding
<audio controls></audio>
<video controls></video>
