0 votes
33 views
in Computer Science by (8.5k points)
An incomplete CSS code within <head> . . . </head> is given below. Complete this code by filling in the blanks as per the specifications that follow:

<head>

<style>

body {________ : blue; } <!--line 1 -->

p {

________: green; <!--line 2 -->

________: Dotum; <!--line 3 -->

}

_____ <!--line 4 -->

{

Color : black;

}

</style>

</head>

Line 1: Page background colour should be Blue.

Line 2: Colour of the Paragraph text should be green.

Line 3: Font family of the Paragraph text should be Dotum.

Line 4: The biggest heading should be black in colour.

1 Answer

0 votes
by (56.5k points)
 
Best answer

<head>

<style>

body {bgcolor : blue; } <!--line 1 -->

p {

color: green; <!--line 2 -->

Font-family: Dotum; <!--line 3 -->

}

H1 <!--line 4 -->

{

Color : black;

}

</style>

</head>

...