Introduction to Web Development – Personal Notes
Overview
These are personal notes covering the fundamentals of modern web development.
HTML Basics
• HTML defines the structure of a webpage.
• Common tags include div, p, a, img, and form.
• Semantic HTML improves accessibility and SEO.
CSS Basics
• CSS controls layout and visual styling.
• Flexbox and Grid are commonly used for layouts.
• Responsive design uses media queries.
JavaScript Basics
• JavaScript adds interactivity to webpages.
• Common concepts include variables, functions, and events.