CSS Basics

test@gmail.com3/19/2026, 10:42:23 PM

Introduction

CSS controls how your site looks.

Example

body {
  background: #f4f4f4;
  font-family: Arial;
}

Core Concepts

  • Selectors

  • Colors

  • Fonts

  • Box Model (margin, padding, border)

Visual Idea

Every element = a box.