Lab Activity: Web Technology I

Comprehensive Hands-on HTML5 & CSS3 Practice

Grade XI • Computer Science ⏱️ ~25 min
Objectives Practical Learning Goals
Part 1 Document Structure & Basic Tags
Task 1: The HTML5 Skeleton

Create a page demonstrating the root, head, and body structure.

<!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <h1>Hello World!</h1> <p>I am learning web development.</p> </body> </html>
Task 2: Headings & Paragraph Alignment
Task 3: Formatting & Links

Showcase <b>, <i>, <strong>, <sub>, <sup> and create a link to an external website.

Part 2 Images, Multimedia & Tables
Task 4: Working with Images
Task 5: Complex Tables

Create a table that uses rowspan and colspan to span multiple rows and columns.

Task 6: HTML5 Multimedia
Part 3 Forms & CSS Integration
Task 7: Interactive Forms

Create a login page with labels and input fields for username and password.

Task 8: Cascading Style Sheets