Advertisements
Advertisements
प्रश्न
Write an HTML document to display the following paragraph as per the given description Using CSS:
- Font Name: Cooper Black
- Style: Bold Italics
- Color: Blue
“The State Institute of Education (SIE) was established in 1965 to provide for systematic study of problems relating to School Education under the administration of Directorate of School Education.”
थोडक्यात उत्तर
उत्तर
Mystyle.css
H1
{
font-family : "Comic Sans MS";
Font-weight : Bold;
border:2px solid blue;
}
P {
Font-family : "Copper Black";
font-style : Italic;
color : Blue;
Font-weight : bold;
}
---CSS_Test.htm---
<html>
<head>
<title> Demonstration of using CSS </title>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
<body bgcolor = yellow>
<H1> State Institute of Education (SIE) </H1>
<P>
The State Institute of Education (SIE) was established in 1965
to provide for systematic study of problems relating to school
Education under the administration of Directorate of School Education.
</P>
</body>
</html>
shaalaa.com
Introduction to CSS
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
APPEARS IN
संबंधित प्रश्न
Expansion of CSS ______.
What is selector?
The Declaration block of CSS is surrounded by
The declaration should be terminated by
What is the property to set text as bold?
Which of the following indicates that the text included is a comment?
Write the general format of linking CSS with HTML.
Write a short note on rule of CSS.
Write a CSS file to define text color and alignment to <p> tag.
Write a CSS file to define font type, style and size to <h1> tag.