0
Fill in the blanks to make the font of the paragraph "Arial"
i need help
9 Respuestas
+ 3
p {
font-family : Arial ;
}
+ 3
p {
font-family: Arial;
}
+ 2
Are you trying to make the font of text within a p tag Arial?
If so, you can inline that as follows:
<p style="font-family: Arial;">TEXT HERE</p>
If you're wanting to add it to a stylesheet, you would have to target it, by either using an id or class identifier, or by choosing its relationship to other elements in the DOM (i.e. parent ->child | parent -> first-child | #id p) etc.
<p id="text">TEXT HERE</p>
In your stylesheet:
#text {
font-family: Arial;
}
Hope that helps!
+ 2
p {
font family: arial;
}
0
Fill in to get the value of the form field with id="name" and set it as the text of the paragraph with id="txt"...
var v = $("#name"). ......;
$("").text(.....);
Answer will be: val(), #txt, v,
0
I need help
0
Your email is not working now!!
0
p {
font family: arial;
}
0
charli my love