currently working on w3schools link below.

w3schools

HTML Basics

HTML (HyperText Markup Language) is the foundation of every web page. It defines the structure and meaning of content on the web. Think of it as the “skeleton” of a site.

HTML works together with other languages and technologies:

Go to HTML Notes →

CSS Basics

CSS (Cascading Style Sheets) controls the presentation and design of web pages. It lets developers define how HTML elements should look — fonts, colors, spacing, layouts, and even animations.

CSS works in combination with:

Go to CSS Notes →

JavaScript Basics

JavaScript is the main programming language that brings interactivity and logic to websites. While HTML defines the structure of a page and CSS styles it, JavaScript allows you to dynamically change content, respond to user input, and communicate with external data sources.

JavaScript works closely with other languages and technologies:

Go to JavaScript Notes →

Rust Basics

Rust is a modern programming language focused on safety, speed, and concurrency. It allows developers to write programs that are memory-safe without a garbage collector. Rust is particularly known for its ownership system, which prevents common bugs like null pointer dereferences and data races at compile time.

Rust works closely with other languages and technologies:

Go to Rust Notes →

SQL Basics

SQL (Structured Query Language) is the standard language for managing and querying relational databases. It allows you to insert, retrieve, update, and delete data, as well as define database structures.

Core concepts in SQL include:

SQL works with relational databases such as MySQL, PostgreSQL, SQLite, and SQL Server. It’s a foundation for back-end development, data analysis, and reporting.

Go to SQL Notes →