Advertisements
Advertisements
प्रश्न
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 {__________ : __________; } <!--line 1 -->
p {
__________ : __________; <!--line 2 -->
__________ : __________; <!--line 3 -->
}
__________ <!--line 4 -->
{
Color : Blue;
}
</style>
</head>
- Line 1: Page background color should be Yellow.
- Line 2: Color of the paragraph text should be Red.
- Line 3: Font family of the paragraph text should be Arial.
- Line 4: The second biggest heading should be Blue in color.
कोड लेखन
रिकाम्या जागा भरा
Advertisements
उत्तर
<head>
<style>
body {background-color : yellow; }
p {
color : red;
font-family : Arial;
}
H2
{
Color : Blue;
}
</style>
</head>shaalaa.com
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
2024-2025 (March) Set 4
