Advertisements
Advertisements
Question
Write the equivalent CSS code to set the following styles for a web page:
- The entire page's background color should be yellow.
- Second-level Heading properties should be as follows:
- The text color should be Red.
- Left margin should be 25 px.
Short/Brief Note
Advertisements
Solution
i. {background-color: yellow;}
ii. h2 {display: block; font-color: Red ; margin-left: 25px;}shaalaa.com
Cascading Style Sheets in HTML
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
The ______ property is used to set position for an element.
The float property defines the ______ of content.
State whether the following statement is True or False.
.cs is the extension of CSS file.
A CSS rule set contains ______ and ______.
Positioning types in CSS are ______.
Types of floating properties are ______, ______, ______.
Write a program using html with following CSS specification -
- The background color of the company name should be green.
- The text color of the company name should be red.
- The heading should be large with font "comic sans ms"
- The description of the company should be displayed in blue color in a paragraph.
Write HTML5 code with CSS as follows -
- Create ordered list with names of tourist Cities.
- Create unordered list with tourist places of those cities.
- Divide the list into two sections left and right by using 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.
