HTML_Course_Outline
HTML_Course_Outline
1. Introduction to HTML
- What is HTML?
HTML (Hypertext Markup Language) is the standard language used to create and design web
pages.
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>Welcome to HTML</h1>
<p>This is a paragraph.</p>
</body>
</html>
- Basic Tags
<p> (Paragraph)
<a> (Anchor - links)
<img> (Images)
- Attributes
Example:
3. HTML Formatting
- Creating Links
Example:
Example:
- Embedding Images
Example:
6. HTML Tables
- Table Structure
<table>
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
</tr>
</table>
7. HTML Forms
- Form Elements
<label for="name">Name:</label>
</form>
- Embedding Audio
Example:
<audio controls>
</audio>
- Embedding Video
Example:
<video controls>
</video>
9. HTML Semantics
- Semantic Tags
- Code Formatting
- Accessibility
Example:
Create a personal webpage with a header, navigation, content section, and footer using the