Nami Guide

Lesson 2: CSS Basics

Style your page like a pro pirate designer!

๐ŸŽจ What is CSS?

CSS stands for Cascading Style Sheets. It controls how your HTML looks โ€” colors, fonts, layout, and more!

๐Ÿ“„ CSS Syntax

selector {
  property: value;
}

Example:

h1 {
  color: red;
  text-align: center;
}

๐Ÿงฉ How to Add CSS

๐Ÿ”ง Key CSS Topics

๐Ÿ’ก Next Topics

The following topics are explained in detail in separate lessons:

๐Ÿงช Try it Yourself

Click below to test CSS live in the playground!

Try in Playground
HOME PAGE :

BACK