HTML Full Course
HTML Full Course
1. Introduction to HTML
HTML (HyperText Markup Language) is the standard language for creating webpages. It uses "tags" to
<!DOCTYPE html>
<html>
<head><title>Title</title></head>
</html>
4. Lists
HTML Full Course - Beginner to Advanced
5. Tables
Example:
<table border="1">
<tr><th>Name</th><th>Age</th></tr>
<tr><td>John</td><td>20</td></tr>
</table>
<input>: Input field (various types: text, email, radio, checkbox, etc.)
9. Media in HTML
Example:
<video controls>
</video>
Ideas:
- Resume Website
- Portfolio Page
HTML Full Course - Beginner to Advanced
- Registration Form
Practice on:
- W3Schools.com
- FreeCodeCamp.org