Reviewer for Web Development under the TVL-ICT track.
1
HTML โ Structure
HTML defines the structure of a page using tags.
| Tag | Purpose |
|---|---|
| <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>
<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.