Siksha Sarovar

Siksha Sarovar (sikshasarovar.com) is a free educational web application that helps students in India learn programming and prepare for academic and competitive exams. The platform offers structured coding courses (C, C++, Python, Java, HTML, CSS, PHP, Power BI, AI, Machine Learning, Data Science), complete university curriculum notes for BCA/MCA students with previous year question papers, Class 10 and Class 12 CBSE/HBSE school notes, and dedicated preparation material for SSC, UPSC, Banking, Railway and other government exams. Browsing the site is completely free and requires no account. Users may optionally sign in with Google solely to save their learning progress, quiz scores and personal preferences across devices.

Privacy Policy | Terms of Service | Contact Siksha Sarovar | About Siksha Sarovar

v4.0.9 · PWA
Siksha Sarovar logo
Siksha Sarovar
Your Learning Universe

Siksha Sarovar is a free e-learning platform for coding courses, BCA university notes and competitive exam preparation. Optional Google sign-in saves your learning progress across devices.

Initializing knowledge base…
Compiling modules 0%

29. CSS - Aural Media

Lesson 29 of 34 in the free CSS Customization: Zero to Hero notes on Siksha Sarovar, written by Rohit Jangra.

CSS Aural Media (Speech)

Aural media sheets allowed control over the quality of synthetic speech (volume, pitch, speed, etc.). NOTE: Many of these properties are now part of the CSS Speech Module.

Common Speech Properties (Conceptual)

  1. speak: Specifies whether text will be rendered aurally and, if so, how.
  • auto: Default.
  • none: Suppresses aural rendering.
  • normal: Uses normal pronunciation rules.
  1. volume: Controls the volume of the speech.
  • silent, x-soft, soft, medium, loud, x-loud.
  1. voice-family: Specifies the specific voice or generic voice family to be used.
  1. pitch: Applies a pitch to the speaking voice.
  • x-low, low, medium, high, x-high.
  1. rate: Specifies the speaking rate.

Example (CSS Speech)

h1 {
  speak: always;
  volume: loud;
  pause-before: 200ms;
  pause-after: 200ms;
}
Use Case: These styles are primarily used for accessibility tools (Screen Readers) to improve the experience for visually impaired users.