InterviewSolution
Saved Bookmarks
| 1. |
Write the html code to change the background colour of browser using CSS? |
|
Answer» – Back_Color.css — body { background-color : pink; } Background_CSS.htm <html> <head> <title> Changing Background using CSS </title> <link rel = “stylesheet” type=”text/css” href=”Body_Color.css”> </head> <body> <H1> Welcome to CSS </H1> </body> </html> |
|