Dev4Hub
TutorialsRoadmapReviewNotesCode Editor
Sign inSign up
  • Python
  • HTML
  • CSS
  • JavaScript
  • SQL
Your progress0 / 5
search
school

CSS Basics

  • 1CSS Introduction
  • 2CSS Selectors
  • 3CSS Colors
menu_book

CSS Box Model

  • 1CSS Margins
  • 2CSS Padding
Tutorialschevron_rightCSS Tutorialchevron_rightCSS Colors

CSS Colors

format_list_numberedLesson 3 of 5schedule1 min readview_agenda1 sectionauto_awesomeAI tutor ready
01

Specifying Colors

Colors in CSS can be specified by color name, RGB, HEX, HSL, RGBA, or HSLA values.

Example

h1 { color: Tomato; }
h2 { color: #00ff00; }
p  { color: rgb(255, 99, 71); }
Try it Yourself »
arrow_back PreviousCSS SelectorsNext arrow_forwardCSS Margins

Dev4Hub

Learn coding with hands-on tutorials, examples and quizzes — covering Python, HTML, CSS, JavaScript, SQL and more.

Tutorials

  • Python
  • HTML
  • CSS
  • JavaScript
  • SQL

Tools

  • Code Editor
  • All Tutorials
© 2026 Dev4Hub. Inspired by the W3Schools learning model.