- 2
Module 5 Quiz
Fill in the blanks so that the first line of the paragraph uses the newly defined font called "test"
7 Answers
+ 4
@font-face { font-family: "test"; src: url(test.ttf); } p::first-line { font-family: "test"; }
+ 3
Thank Friend
+ 2
you first create the font using the @fontface and then set the location. furtherdown in your css file you can just "call" to that font
+ 2
the answer: @fontface, src, first-line, font-family and then test.
the question said to create the font and then apply it to the first line of the paragraph so you have to say @fontface then where to find font named "test". the paragraph uses a pseudo code called first-line to apply the font-family called test.
+ 1
Module 5 quiz please fill in the blanks
Class student
Private:
Int age
___
Student(into){
setage (_)
}
void setAge (int a){
age=a
}
_getAge (){
+ 1
@font-face
{
font-family: "test";
src: url(test.ttf);
}
p::first-line
{
font-family: "test";
}
0
@font-face{font-family;''test''
src;url[test;ttf}
}
p;;first-line{
font-family;''test''
}