+ 3
CSS3 Basic
Fill in the blanks so that the first line of the paragraph uses the newly defined font called "test". @font-face { font-family: "test"; src: url(test.ttf); } p::_____{ ______:"___"; }
17 Respuestas
+ 3
p::first-line{
font-family: test;
}
+ 3
Thanks.....Sandeep Chatterjee
+ 3
@font-face{
font-family: "test";
src: url(test.ttf);
}
p::first-line{
font-family: "test";
}
+ 3
Fill in the blanks so that the first line of the paragraph uses the newly defined font called "test".
@font-face
{
font-family: "test";
src: url(test.ttf);
}
p::first-line
{
font-family: "test";
}
+ 3
@font-face
{
font-family: "test";
src: url(test.ttf);
}
p::first-line{
font-family: "test";
}
+ 2
I have to agree with Terri Jones because that answer is great.
+ 2
@font-face
{
font-family: "test";
src
: url(test.ttf);
}
p::
first-line
{
font-family
: "
test
";
}
+ 1
body {
background-image:url("sample.png");
background-repeat:repeat-x;
}
a:hover
{
text-decoration:underline;
color: #000000;
cursor: crosshair;
}
+ 1
Thanks to all for the help
0
Add a 25-pixel left and 15-pixel down blue text-shadow.
p {
text-shadow:
-
25
px
15
px blue;
}
0
Yeah correct
0
Fill in the blanks so that the first line of the paragraph uses the newly defined font called "test".
@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
";
}
0
@font-face
{
font-family: "test";
src: url(test.ttf);
}
p::first-line
{
font-family: "test";
}
0
caca
0
p {
text-shadow: -
25
px
15
px blue;
}
- 8
body {
background-image:url("sample.png");
background-_______:repeat-x;
}
a:hover
{
text-_____:underline;
color: #000000;
______: crosshair;
}