11th Standard Syllabus & Materials
11th Standard
TN 11th Tamil இயற்கை வேளாண்மை,சுற்றுச்சூழல் -செய்யுள் - மனோன்மணீயம் Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
TN 11th Tamil என்னுயிர் என்பேன் -துணைப்பாடம் - இசைத்தமிழர் இருவர் Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
TN 11th Tamil மொழி கலை -செய்யுள் - ஒவ்வொரு புல்லையும் Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
TN 11th Tamil பீடு பெற நில் - இலக்கணம் - பகுபத உறுப்புகள் Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
TN 11th Tamil பீடு பெற நில் - துணைப்பாடம் - வாடிவாசல் Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
TN 11th Tamil பீடு பெற நில் - செய்யுள் - குறுந்தொகை Important Questions And Answers Study Material - QB365 Set A

Published on: 09/10/2019
CSS - Cascading Style Sheets
Download Tamil Nadu 11th Standard Computer Applications question papers, model tests, one-mark questions, important questions, and public exam papers in PDF format. Free study materials and answer keys for TN State Board students.
Questions + Answers key
Take MCQ Computer Applications Test

1.
The declaration block of code should be surrounded by ___________ braces.
Curly
Square
Angle
None of these
2.
The styles defined in ____________ can be reused in multiple HTML page.
Inline
CSS
Either A or B
None of these
3.
The < StyIe > tags are called as ____________ .
Page-Level Styles
Internal Style sheets
Either A or B
None of these
4.
Which of the following tag controls the presentation styles of a particular HTML document?
< Link >
< Stylesheet >
< Style >
< A >
5.
How many color names supported by HTML?
256
16
140
16 million
6.
CSS was invented by___________.
Tim berners lee
Bob Kahn
Haken wim lie
William lee
7.
That is the name of the file where all style information are stored?
Sheet
HTML
Style
CSS
8.
Which of the following is used to define style for a particular tag anywhere in an HTML document?
Page level
inline
internal
sitewide
9.
A seperate style sheet files are known as_________
Page-level Style
Internal Style
Sitewide style sheet
all of these
10.
Which section of HTML document used to define < style > tag?
Head
Body
both a and b
either a or b
11.
Which of the following indicates that the text included is a comment?
/* */
!* *!
< * * >
\* *\
12.
The declaration should be terminated by
(:)
(;)
(.)
(,)
13.
What is selector?
Property
Value
HTML tag
name
14.
Which of the following is the page level style?
< Page >
< Style >
< Link >
< H >
15.
Expansion of CSS
Cascading Style Schools
Cascading Style Scheme
Cascading Style Sheets
Cascading Style Shares
16.
What is restriction of internal sheet?
17.
Write the steps to create CSS style sheets.
18.
What is Inline Style?
19.
What is the use of < style > tag?
20.
How will link CSS with HTML?
21.
Write a CSS file to define font type, style and size to < h1 > tag.
22.
Write a CSS file to define text color and alignment to < p > tag.
23.
What are the advantages of using CSS?
24.
Tabulate C55 - Frequently using background image and paragraph margin formatting Properties and Values.
25.
List and explain the Font and text element properties and values used in CSS.
26.
Write an HTML document to display the following paragraph as per the given description Using CSS:
1. Font Name: Cooper Black
2. Style: Bold Italics
3. 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.”
1.
(a)
Curly
2.
(b)
CSS
3.
(c)
Either A or B
4.
(c)
< Style >
5.
(c)
140
6.
(c)
Haken wim lie
7.
(d)
CSS
8.
(b)
inline
9.
(c)
Sitewide style sheet
10.
(a)
Head
11.
(a)
/* */
12.
(b)
(;)
13.
(c)
HTML tag
14.
(b)
< Style >
15.
(c)
Cascading Style Sheets
16.
The "Internal Style Sheet" is defined and implemented only within an HTML document.
17.
Creating CSS style sheets:
(i) Open an empty notepad.
(ii) Type the style properties and their values
(iii) Save the file with extension .css.
18.
"Inline style is used to define style for a particular tag anywhere in an HTML document. You can define styles for any tag within an HTML document. But it is applicable only on that line where it is defined.
19.
A style tag is used to change the default characteristics of a particular tag in the entire web document wherever that tag is used. The < style > tag controls the presentation styles of a particular HTML document. If you want to use a particular tag with the same style applied in one HTML document to another is not possible.
Thus, the < style > tags are called as "Page-Level Styles" or "Internal Style Sheets".
20.
Linking CSS with HTML:
The < link > tag is used to add CSSfile with HTML in head section. While using < link > tag, the following attributes are also included along with standard values.
rel = "stylesheet"
type = "text/css"
The href attribute is used to link the .css file.
General format of < Link > tag
< Link rel = "stylesheet" type = "text/css" href = CSS_File_Name_with_Extension >
HTML Code for Formatting HTML element through CSS:
Mystyle.css
H1
{
font-family: "Comic Sans MS";
Font-weight: Bold;
border:2px solid blue;·
}
P {
font-style : Italic;
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 C5S Working Group. The CSSWorking Group creates documents called specifications. When a specification has been discussed and officially ratified by W3C members, it becomes a recommendation.
< /p >
< body >
< html >
21.
H1
{
Font-family
}
Font-family : "Arial";
Font-style : Italic;
Font-size : 24px;
}
22.
{
color: red; Text-align : center;
}
23.
(i) Maintainability : CSS are also defined and stored as separate files. So, the style and appearance of a web page can be dynamically changed and maintained with less effort.
(ii) Reusability : The styles defined in CSS can be reused in multiple HTML pages.
(iii) Easy to understand : The tags in web pages are well organized with style specifications and therefor it is easy to understand.
24.
| Formatting | Properties | Values | Example |
| Background Image | Background-Image | URL ("image name with extension'') | Body { background-image: url ("Flower.gif''); } |
| Background-repeat | norepeat | Body { background-image: url ("Flower.gif''); background-repeat: norepeat; } |
|
| Background-position | Direction | Body { background-image: url ("Flower.gif''); background-repeat: norepeat; background-position: right top; } |
|
| Paragraph Margin | Margin-top Margin-bottom Margin-left Margin-right | Margin size in pixels | P { Margin-top: 50px; Margin-left : 50px; } |
25.
| Formatting | Properties | Values | Example |
| Text Colour | Color | Predefined _Color_Name | P { color:pink; } H1 { color:MediumSeaGreen; } |
| Text Alignment | Text-align | Centre / Left / Right / Justify | P { Text-align: centre; } |
| Font type | Font-family | Font_name | P { Font-family: "Times New Roman" : } |
| Font Style | Font_Style | Normal/Italic | P { Font-family: "Times New Roman" Font-style: Italic; } |
| Font Style (Bold) |
Font-weight | Normal/Bold | P { Font-family: "Times New Roman"; Font-style: Italic; Font-weight: bold; } |
| Font size | Font_size | Size in pixels | P { Font-family: "Times New Roman" Font-style: Italic; Font-size: I4px; } |
| Background Colour | Background Colour | Predefined_Color_Name | Body { background-color: violet; } |
| Border Colour | Border | Borer thickness < space > border style < space > Predefined_borderColor_Name |
H2 { border: 2px solid red;} |
| HTML supports nearly 140 color names | |||
| Background Image | Background-image | URL("image name with extension") | Body { background-image: url ("Flower.gif"); } |
| Background-repeat | norepeat | Body { background-image: url ("Flower.gif"); background-repeat: norepeat; } |
|
| Background-position | Direction | Body { background-image; url ("Flower.gif"} ; background-repeat: norepeat; background-position: right top; } |
|
| Paragraph Margin | Margin-top Margin-bottom Margin-left Margin-right |
Margin size in pixels | P { Margin-top: 50px; Margin-left: 50px; } |
26.
< html >
< head > < title > CSS DOCUMENT < /title >
< style >
P
{
font-family : "Cooper Black"; Font-style: Bold: Font-weight: Italics; Color: Blue;
}
< /style >
< body >
< 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 >
11th Standard Syllabus & Materials
11th Standard
TN 11th Tamil பீடு பெற நில் - செய்யுள் - காவடிச்சிந்து Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
TN 11th Tamil பீடு பெற நில் - உரைநடை - மலை இடப்பெயர்கள் : ஓர் ஆய்வு Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
TN 11th Tamil மாமழை போற்றுதும் - துணைப்பாடம் - யானை டாக்டர் Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
TN 11th Tamil மாமழை போற்றுதும் - செய்யுள் - ஐங்குறுநூறு Important Questions And Answers Study Material - QB365 Set A
Tamilnadu Stateboard 11th Standard Subjects

Maths

Commerce

Economics

Biology

Business Maths and Statistics

Accountancy

Computer Science

Physics

Chemistry

Maths

Biology

Economics

Physics

Chemistry

History

Business Maths and Statistics

Computer Science

Accountancy

Computer Applications

History

Computer Technology

Commerce

Computer Applications

Computer Technology

Tamil

English

French
Tamilnadu Stateboard Standards