font-synthesis-08-ref.html (637B)
1 <!DOCTYPE html> 2 <html lang="en"> 3 <meta charset="utf-8"/> 4 <title>CSS Test: font-synthesis style and weight</title> 5 <style> 6 @font-face { 7 font-family: "lato"; 8 src: url(/fonts/Lato-Medium.ttf); 9 } 10 .test { 11 font-family: "lato"; 12 font-size: 3em; 13 } 14 .auto { 15 font-style: italic; 16 font-weight: bold; 17 } 18 .weight { 19 font-weight: bold; 20 } 21 .style { 22 font-style: italic; 23 } 24 </style> 25 26 <section class="test"> 27 <p class="auto">Filler text</p> 28 <p class>Filler text</p> 29 <p class="weight">Filler text</p> 30 <p class="style">Filler text</p> 31 </section>