Html Css Classes Ids — Free Html Tutorial

Learn Html Css Classes Ids in Html with a free, beginner-friendly tutorial, examples and practice for Indian students on Syllab.in.

Html Css Classes Ids — Free Html Tutorial

Learn Html Css Classes Ids in Html with a free, beginner-friendly tutorial, examples and practice for Indian students on Syllab.in.

✓ 100% Free ✓ No Login Needed ✓ NCERT / CBSE Aligned ✓ Download as PDF

TL;DR: Learn Html Css Classes Ids in Html with a free, beginner-friendly tutorial, examples and practice for Indian students on Syllab.in.

Written & reviewed by the Syllab.in Academic Team (CBSE/NCERT subject experts) · Updated

🤖 Stuck on any question? Ask Syllab's free AI Tutor for a step-by-step explanation — instant, unlimited, no login.

Html Css Classes Ids in Html

class attribute: reusable, multiple per element, styled with .classname. id attribute: unique, one per element, styled with #idname.

Use classes for repeated styles (buttons, cards). Use ids for unique elements (main content, nav). Specificity: id > class > tag.

CSS selectors: .class { }, #id { }, element.class { }, #id .child { }, .class1.class2 { } (both classes).

Html Css Classes Ids — Syntax

<h1 id="hero">Main Title</h1>
<p class="intro">Introduction paragraph</p>
<button class="btn btn-primary">Click Me</button>
<style>
  #hero { color: blue; }
  .intro { font-size: 16px; }
  .btn { padding: 10px; }
  .btn-primary { background: blue; }
</style>

Learn Html Css Classes Ids step by step with Syllab's free interactive Html tutorial — runnable code examples, practice exercises and instant AI feedback, all free with no signup. Explore the full Html course →