Computer Applications

Write the equivalent CSS code to set the following styles for a web page :

(i) Entire page background color should be yellow

(ii) Second level Heading properties should be as follows :

  • Text color should be Red
  • Left margin should be 25 px

CSS

16 Likes

Answer

(i)

body {
   background-color: yellow; 
}

(ii)

h2 {
    color: red; 
    margin-left: 25px; 
}

Answered By

13 Likes


Related Questions