Page 1: What is Web Development?
Web development is the process of creating websites and web applications.
It mainly uses three technologies:
• HTML – Structure
• CSS – Design
• JavaScript – Functionality
Page 2: Introduction to HTML
HTML stands for HyperText Markup Language.
HTML is used to create the structure of a webpage.
It uses elements called tags.
Page 3: Common HTML Tags
Some common HTML tags are:
<h1> to <h6> – Headings
<p> – Paragraph
<a> – Link
<img> – Image
<div> – Container
Page 4: Introduction to CSS
CSS stands for Cascading Style Sheets.
CSS is used to style and design web pages.
It controls colors, fonts, spacing, and layout.
Page 5: CSS Properties
Some common CSS properties are:
color – Text color
background-color – Background color
font-size – Text size
margin – Space outside elements
padding – Space inside elements
Page 6: Introduction to JavaScript
JavaScript is a programming language used to make websites interactive.
It can respond to user actions like clicks and typing.
Page 7: What JavaScript Can Do
JavaScript can:
• Show alerts and messages
• Validate forms
• Change HTML content
• Create animations
Page 8: HTML + CSS + JavaScript Together
HTML creates the structure.
CSS adds style.
JavaScript adds behavior.
Together, they create modern websites.
Page 9: Example Explanation
HTML: Creates a button
CSS: Styles the button
JavaScript: Makes the button clickable
This is how interaction works on websites.
Page 10: Conclusion & Practice
HTML, CSS, and JavaScript are the foundation of web development.
Practice idea:
• Create a simple webpage
• Add colors using CSS
• Add a button using JavaScript