Menu
×
×
正确
<style>
@font-face {
font-family: sansation;
src: url('sansation_light.woff');
}
@font-face {
font-family: sansation;
src: url('sansation_bold.woff');
@(11): @(4);
}
body {
font-family: sansation;
}
</style>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph</p>
<p>This is a <b>paragraph</b></p>
</body>
<style>
@font-face {
font-family: sansation;
src: url('sansation_light.woff');
}
@font-face {
font-family: sansation;
src: url('sansation_bold.woff');
font-weight: bold;
}
body {
font-family: sansation;
}
</style>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph</p>
<p>This is a <b>paragraph</b></p>
</body>
不正确
点击 此处 重试 正确
下一题 ❯<style> @font-face { font-family: sansation; src: url('sansation_light.woff'); } @font-face { font-family: sansation; src: url('sansation_bold.woff');w3exercise_input_no_0:w3exercise_input_no_1; } body { font-family: sansation; } </style> <body> <h1>This is a heading</h1> <p>This is a paragraph</p> <p>This is a <b>paragraph</b></p> </body> |