voice-family-integer.html (861B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>CSS Speech: Integer Attribute</title> 5 <link rel="author" title="John Foliot" href="mailto:john@foliot.ca"> 6 <link rel="author" title="Katherine Mancuso" href="mailto:kmancuso@gmail.com"> 7 <link rel="author" title="Ryan Eilders" href="mailto:ryaneilders@gmail.com"> 8 <link rel="reviewer" title="Arron Eicholz" href="mailto:arronei@microsoft.com"> 9 <link rel="help" href="http://www.w3.org/TR/css3-speech/#voice-props-voice-family"> 10 <meta name="flags" content="speech"> 11 <meta name="assert" content="User has 2 female voices installed on the system"> 12 <style type="text/css"> 13 p.voice1 {voice-family: female 1;} 14 p.voice2 {voice-family: female 2;} 15 </style> 16 17 <body> 18 <p style=voice1>This should be read in one female voice.</p> 19 20 <p style=voice2>This should be read in a different female voice.</p> 21 </body> 22 </html>