Welcome to My Presentation
Presented by Mohd Hassaan
Introduction to HTML, CSS &
JavaScript
The Core Technologies of Web Development
Presented by Mohd Hassaan
Introduction
• HTML → Structure of a webpage
• CSS → Styling and design
• JavaScript → Interactivity and logic
HTML (HyperText Markup Language)
• Defines the structure of web pages
• Uses elements like <html>, <head>, <body>, <p>, <a>, <img>
• Acts as the backbone of any website
HTML Elements
• <h1> to <h6> → Headings
• <p> → Paragraphs
• <a> → Hyperlinks
• <img> → Images
• <table>, <tr>, <td> → Tables
CSS (Cascading Style Sheets)
• Controls the look and feel of web pages
• Uses selectors and properties
• Can be inline, internal, or external
CSS Elements
• Selectors → Target elements (e.g., p, h1, .class, #id)
• Properties → Define styles (e.g., color, font-size, margin)
• Values → Assign to properties (e.g., red, 16px, 10px)
JavaScript
• Adds interactivity and functionality
• Runs in the browser
• Supports dynamic updates, event handling, animations
JavaScript Elements
• Variables (var, let, const)
• Functions → Blocks of reusable code
• Events (onclick, onmouseover)
• Objects & Arrays → Data structures
• DOM Manipulation → document.getElementById()
Role of Each Technology
• HTML → Structure
• CSS → Style
• JavaScript → Behavior
Summary
• HTML, CSS, and JavaScript work together to build modern websites
• HTML builds the structure
• CSS makes it visually appealing
• JavaScript adds logic and interactivity
Thank You
Any Questions?