HTML Basics

HTML stands for HyperText Markup Language. It's the standard language for creating web pages.

HTML elements are building blocks of HTML pages.

Example of a paragraph:

<p>Hello World!</p>
CSS Styling

CSS stands for Cascading Style Sheets. It styles HTML elements.

Example of CSS syntax:

p { color: blue; font-size: 16px; }
JavaScript Intro

JavaScript allows dynamic content and interaction on web pages.

console.log('Hello World');
DOM Manipulation

The DOM represents HTML in memory and can be manipulated using JavaScript.

document.getElementById('myId');
APIs & Fetch

APIs allow communication between applications. Fetch API retrieves data from servers.

fetch('https://api.example.com/data')
.then(response => response.json())
.then(data => console.log(data));