Skip to content
โ† Back to Overview

TVL โ€” Web Development

Senior High TVL/ICT reviewer: HTML, CSS, and JavaScript.

Reviewer for Web Development under the TVL-ICT track.

1

HTML โ€” Structure

HTML defines the structure of a page using tags.

TagPurpose
<h1>โ€“<h6>Headings
<p>Paragraph
<a>Link
<img>Image
<ul>/<li>Lists
2

CSS โ€” Style

CSS controls presentation โ€” colors, fonts, layout. Apply via selectors.

p { color: blue; font-size: 16px; }
๐Ÿ’ก Exam Hack

Separate concerns: HTML for content, CSS for style, JavaScript for behavior.

3

JavaScript โ€” Behavior

JavaScript adds interactivity โ€” responding to clicks, validating forms, and updating content dynamically.

4

Basic Page

<!DOCTYPE html>
<html><head><title>My Page</title></head>
<body><h1>Hi</h1></body></html>

This is the minimum skeleton every HTML page needs.

๐Ÿ“Œ Quick Recap โ€” Master These

Before your exam, make sure you can confidently explain and apply each of the following:

  • HTML โ€” Structure
  • CSS โ€” Style
  • JavaScript โ€” Behavior
  • Basic Page

Re-read any section above where you hesitate.