×
×
Correct!
Add a web font with the name "sansation" and the URL "sansation_light.woff".
<style>
@font-face {
font-family: sansation;
src: url('sansation_light.woff');
}
body {
font-family: sansation;
}
</style>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph</p>
<p>This is a paragraph</p>
</body>
<style>
@font-face {
font-family: sansation;
src: url(sansation_light.woff);
}
body {
font-family: sansation;
}
</style>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph</p>
<p>This is a paragraph</p>
</body>
<style>
@font-face {
font-family: sansation;
src: url("sansation_light.woff");
}
body {
font-family: sansation;
}
</style>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph</p>
<p>This is a paragraph</p>
</body>
Not CorrectClick here to try again. Correct!<style>{ font-family: ; : ; } body { font-family: sansation; } </style> <body> <h1>This is a heading</h1> <p>This is a paragraph</p> <p>This is a paragraph</p> </body> |