Advertisements
Advertisements
Question
- Write a CSS code to display the first level heading text as "My School" in Green color and center-aligned.
- Write the CSS code to display the following paragraph below the above-mentioned heading:
This is my School
I study in class 12
The properties of the paragraph content should be as follows:
(I) Text color should be yellow
(II) Font size should be 25 px
(III) Font style should be bold
Advertisements
Solution
i) h1 { display: block; font-color: green ; text-align: center;}
ii) p { display: block; font-color: yellow; font-weight: Bold; font-size: 25px;}APPEARS IN
RELATED QUESTIONS
The ______ property is used to set the position for an element.
The float property defines the ______ of content.
______ is used with elements that overlap with each other.
.cs is the extension of CSS file.
A programmer wants to define range for age between 18 to 50, he will use a form with following appropriate control.
______ character is used to create an id in CSS.
"CSS is the most popular choice for the web developers these days". Write any four advantages of CSS.
Write an external CSS code snippet to set all four margins of the body tag with 5px each.
Write an inline CSS code to set the background color for the first level heading as 'green' containing the text "My CA Exam".
Write any two differences between the Outline and Border-style properties of CSS.
