Advertisements
Advertisements
Question
Write a CSS file to define text color and alignment to <p> tag.
Answer in Brief
Advertisements
Solution
Mystyle.css
P {
Text-align: center;
color : MediumSeaGreen;
}
--- CSS_Test.htm ---
<html>
<head>
<title> Demonstration of using CSS </title>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>
<body>
<H1> Welcome to CSS </H1>
<P>
CSS was invented by HakonWium Lie on October 10, 1994 and
maintained through a group of people within the W3C called the
CSS Working Group. The CSS Working Group creates documents
called specifications. When a specification has been discussed and
officially ratified by W3C members, it becomes a recommendation.
</P>
<body>
<html>shaalaa.com
Introduction to CSS
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
Expansion of CSS ______.
Which of the following is the page level style?
The extension of CSS file is ______.
What is selector?
Which of the following indicates that the text included is a comment?
Which of the following ways below is correct to write a CSS?
Write the general format of linking CSS with HTML.
Write down general format of CSS declaration.
Write a short note on rule of CSS.
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.”
