HTML Overview

HTML stands for HyperText Markup Language and it is used to create web pages. It structures the content on the page.

Elements in HTML are represented by tags, and these tags define how content should be displayed.

<html> </html>
CSS Introduction

CSS stands for Cascading Style Sheets and it is used to style HTML content. It allows you to apply fonts, colors, layouts, and more.

CSS works by selecting HTML elements and applying styles to them. It can be added inline, internally, or externally.

body { background-color: lightblue; }
JavaScript Basics

JavaScript is a programming language used to add interactivity to web pages. It allows you to dynamically change HTML and CSS content.

JavaScript runs in the browser and can be embedded directly into HTML or linked via an external file.

console.log('Hello, World!');
Responsive Design

Responsive design ensures that web pages look good on all devices, from desktop computers to mobile phones.

This is typically achieved using flexible layouts, media queries, and flexible images.

@media (max-width: 600px) { body { font-size: 12px; } }
Web Accessibility

Web accessibility refers to designing web content that can be used by everyone, including individuals with disabilities.

This includes considerations such as providing text alternatives for non-text content and ensuring the content is navigable using a keyboard.

<img src="image.jpg" alt="A descriptive text">