■ Web Development Formula Sheet (Exam Quick
Memory)
■ HTML = Skeleton (Structure)
■ Tags to remember: H P A I L T F
• H = Headings (h1–h6)
• P = Paragraphs
• A = Anchor (links)
• I = Images
• L = Lists (ul, ol, li)
• T = Tables
• F = Forms
■ Trick: 'Happy People Always Imagine Lovely Tables & Forms'
■ CSS = Clothes (Style)
■ Types of CSS = I²E (Inline, Internal, External)
■ Common Properties = C-F-B-L
• C = Color
• F = Font-size
• B = Background-color
• L = Layout (margin, padding, border)
■ Trick: 'Cool Fancy Beautiful Layout'
■ JavaScript = Brain (Behavior)
■ Concepts to remember: V C L F E D
• V = Variables
• C = Conditions (if…else)
• L = Loops
• F = Functions
• E = Events (onclick)
• D = DOM
■ Trick: 'Very Cool Little Fun Events Daily'
■ Key Differences (2-line answers)
• Web vs Internet → Internet = network, Web = service on it
• Java vs JavaScript → Java = OOP language, JS = scripting for web
• Webpage vs Website → Page = one file, Site = many pages
• CSS Types → Inline = in tag, Internal = in <style>, External = .css file
■ Mini Code Examples
HTML Table:
<table border="1"><tr><td>Name</td></tr></table>
CSS Rule:
h1 { color: red; font-size: 20px; }
JS Loop:
for (let i=1;i<=3;i++){ document.write(i); }