Advertisements
Advertisements
प्रश्न
- 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
टिप्पणी लिखिए
उत्तर
i) h1 { display: block; font-color: green ; text-align: center;}
ii) p { display: block; font-color: yellow; font-weight: Bold; font-size: 25px;}
shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
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.
A CSS rule set contains ______ and ______.
- Set
- selector
- post
- declaration block
- <>
Positioning types in CSS are ______
- Static
- fixed
- absolute
- position
- dynamic
- nested
Types of floating properties are ______, ______, ______
- left
- zero
- right
- all
- none
- dock
Write Html5 code with CSS as follows -
- To create form to accept name, age, email address, from the user.
- Create a submit button to send the data.
- The heading of the form should have a background color and a different font style.
What type of CSS is the following code snippet?
<h1 style="color:blue;">A Blue Heading</h1>
"CSS is the most popular choice for the web developers these days". Write any four advantages of CSS.
Write an inline CSS code to set the background color for the first level heading as 'green' containing the text "My CA Exam".
- Assertion (A): CSS saves a lot of work. It can control the layout of multiple web pages all at once.
- Reason (R): All the required style settings can be stored in an external stylesheet and a link to it can be added in the <head> section of each web page.