InterviewSolution
Saved Bookmarks
| 1. |
Form a CSS code within the …. for the following specifications: Background colour : blue For the paragraph, font family is Dotum and colour of the text is red Heading should be in black colour |
|
Answer» <head> <style> body { background-color: blue;} p {color:red; font-family:Dotum; } h1{ color: black;} </style> </head> |
|