generic-gender-declarations-001.html (854B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Test: voice-family generic gender keywords</title> 5 <link rel="author" title="John Foliot" href="mailto:john@foliot.ca"> 6 <link rel="help" href="http://www.w3.org/TR/css3-speech/#voice-props-voice-family"> 7 <meta name="flags" content="speech"> 8 <meta name="assert" content="The male, female, and neutral values of voice-family render the text in male, female, and neutral voices, respectively."> 9 10 11 <style> 12 p.male { voice-family: male; } 13 p.female { voice-family: female; } 14 p.neutral { voice-family: neutral; } 15 </style> 16 17 </head> 18 <body> 19 20 <p class="male">This sentence should be read in a male voice.</p> 21 <p class="female">This sentence should be read in a female voice.</p> 22 <p class="neutral">This sentence should be read in a "neutral" voice.</p> 23 24 </body> 25 </html>