Menu
×
×
Correct!
Exercise:Add a web font with the name "sansation" and the URL "sansation_light.woff".
<style>
@(10) {
font-family: @(9);
@(3): @(27);
}
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>
<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!Next ❯ |
This will reset the score of ALL 138 exercises.
Are you sure you want to continue?