1.4. Class Exercise (15 minutes)
Objective: The goal of this exercise is to give students hands-on experience creating a basic HTML webpage that incorporates the fundamental elements they’ve learned so far: headings, paragraphs, and
Instructions for the Exercise:
// HTML code
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Class Exercise</title>
</head>
<body>
<h1>Welcome to My Webpage</h1>
<p>This is a simple webpage created during the class exercise.</p>
<p>Visit my favorite website here:
<a href="https://www.example.com" target="_blank">Favorite Website</a>
</p>
</body>
</html>
Extended Activity (Optional):
Previous1.3. HTML Elements and Attributes (25 minutes)NextLecture_2_Working with Text and Media Elements
Last updated