Advertisements
Advertisements
Question
Form a CSS code within the <head>....<head> for the following specifications:
Background colour: bluе
For the paragraph,
font family is Dotum and colour of the text is red
Heading should be in black colour
Code Writing
Advertisements
Solution
<head>
<style>
body {background-color: blue;}
p{ color:red;
font-family:Dotum; }
h1 { color: black;}
</style>
</head>
shaalaa.com
Is there an error in this question or solution?
