![]() |
Samacheer Kalvi 11th Computer Application Chapter 13 CSS – Cascading Style Sheets Notes PDF Download: Tamil Nadu STD 11th Computer Application Chapter 13 CSS – Cascading Style Sheets Notes |
Samacheer Kalvi 11th Computer Application Chapter 13 CSS – Cascading Style Sheets Notes PDF Download: Students of class can download the Samacheer Kalvi 11th Computer Application Chapter 13 CSS – Cascading Style Sheets Notes PDF Download from our website. We have uploaded the Samacheer Kalvi 11th Computer Application Chapter 13 CSS – Cascading Style Sheets notes according to the latest chapters present in the syllabus. Download Samacheer Kalvi 11th Computer Application Chapter 13 CSS – Cascading Style Sheets Chapter Wise Notes PDF from the links provided in this article.
Samacheer Kalvi 11th Computer Application Chapter 13 CSS – Cascading Style Sheets Notes PDF Download
We bring to you specially curated Samacheer Kalvi 11th Computer Application Chapter 13 CSS – Cascading Style Sheets Notes PDF which have been prepared by our subject experts after carefully following the trend of the exam in the last few years. The notes will not only serve for revision purposes, but also will have several cuts and easy methods to go about a difficult problem.
Board |
Tamilnadu Board |
Study Material |
Notes |
Class |
Samacheer Kalvi 11th Computer Application |
Subject |
11th Computer Application |
Chapter |
Chapter 13 CSS – Cascading Style Sheets |
Format |
|
Provider |
How to Download Samacheer Kalvi 11th Computer Application Chapter 13 CSS – Cascading Style Sheets Notes PDFs?
- Visit our website - https://www.samacheerkalvibook.com/
- Click on the Samacheer Kalvi 11th Computer Application Notes PDF.
- Look for your preferred subject.
- Now download the Samacheer Kalvi 11th Computer Application Chapter 13 CSS – Cascading Style Sheets notes PDF.
Download Samacheer Kalvi 11th Computer Application Chapter 13 CSS – Cascading Style Sheets Chapterwise Notes PDF
Students can download the Samacheer Kalvi 11th Computer Application Chapter 13 CSS – Cascading Style Sheets Notes PDF from the links provided in this article.
I. Choose The Correct Answer
Question 1.
Expansion of CSS:
(a) Cascading Style Schools
(b) Cascading Style Scheme
(c) Cascading Style Sheets
(d) Cascading Style Shares
Answer:
(c) Cascading Style Sheets
Question 2.
Which of the following is the page level style?
(a) <Page>
(b) <Style>
(c) <Link>
(d) <H>
Answer:
(b) <Style>
Question 3.
CSS is also called as:
(a) Sitewide Style Sheets
(b) Internal Style Sheets
(c) Inline Style Sheets
(d) Internal Inline Sheets
Answer:
(a) Sitewide Style Sheets
Question 4.
The extension of CSS file is:
(a) .ssc
(b) .css
(c) .CSC
(d) .htm
Answer:
(b) .css
Question 5.
What is selector?
(a) Property
(b) Value
(c) HTML tag
(d) Name
Answer:
(c) HTML tag
Question 6.
The Declaration block of CSS is surrounded by:
(a) ( )
(b) [ ]
(c) { }
(d) <>
Answer:
(c) { }
Question 7.
The declaration should be terminated by:
(a) :
(b) ;
(c) .
(d) ,
Answer:
(b) ;
Question 8.
What is the property to set text as bold?
(a) Font-Style
(b) Font-Weight
(c) Font-Property
(d) Font-Bold
Answer:
(b) Font-Weight
Question 9.
Which of the following indicates that the text included is a comment?
(a) /**/
(b) !* *!
(c) <* *>
(d) \* *\
Answer:
(a) /**/
Question 10.
Which of the following ways below is correct, to write a CSS?
(a) p{coloured; text-align:center};
(b) p {colonred; text-align:center}
(c) p {color:red; text-align:center;}
(d) p (color:red;text-align:center;)
Answer:
(c) p {color:red; text-align:center;}
II. Answer To The Following Questions
Question 1.
What is the use of <style> tag?
Answer:
We are already know about the formatting tags and its attributes, in some situations, you may need to use a tag uniformly in the entire document. To do so, we can use <style> tag. A style tag is used to change the default characteristics of a particular tag in the entire web document wherever that tag is used.
Question 2.
What is CSS?
Answer:
Cascading Style Sheets (CSS) are also called as Sitewide Style sheets or external style. CSS is a style sheet language used for describing the formatting of a document written in HTML. Using CSS, you can control the font colour, font style, spacing between pages, columns size, border colour, background image or colour and various other effects in a web page.
Question 3.
Write the general format of linking CSS with HTML?
Answer:
The <link> tag is used to add CSS file 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>
Question 4.
What is Inline Style?
Answer:
“Inline style”, which 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. If you use the same tag, again in the same documnet, it does not reflect the new style.
Question 5.
Write down general format of CSS declaration?
Answer:
The body of the style sheet consists of a series of rules.
Selector:
HTML Tag
Declaration:
{Properties: Values}
III. Answer To The Following Questions
Question 1.
What are the advantages of using CSS?
Answer:
Maintainability:
CSS are also defined and stored as separate files. So, the style and appearance of a web page can be dynamically changed and maintain with less effort.
Reusability:
The styles defined in CSS can be reused in multiple HTML pages.
Easy to understand:
The tags in web pages are well organized with style specifications and therefore it is easy to understand.
Question 2.
Write a short note on rule of CSS?
Answer:
CSS style declaration consists of two major parts; Selector and Declaration. The Selector refers an HTML tag in which you want to apply styles.
The Declaration is a block of code contains style definition. It should be surrounded by curly braces. You can include any number of properties for each selector, and they must be separated by semicolons, The property name and its value should be separated by a colon. Each declaration should be terminated by a semicolon (;).
Eg:
Question 3.
Wrie a CSS file to define text color and alignment to <p> tag?
Answer:
The style properties are defined to <p> tag. Hereafter, whenever you use the <p>, the contents will be displayed with modified properties.
If you want to use the above style definition as an internal style then it should be specified within <style>,</style> block in head section. If you want store the above definition for using all your web pages, you should save the above code as a separate file with extension.css
Question 4.
Write a CSS file to define font type, style and size to <h1> tag?
Answer:
<h1> tag in a particular font style and size with blue colour in the entire page,You can use <style> tag to define its properties in head section. The style of <h1> header tag is clearly defined. So, hereafter, the content between <h1> and </h1> will be displayed as per its definition.
IV. Answer To The Following Questions
Question 1.
Write an HTML document to display the following oaragraph 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.”
Question 2.
List and explain the Font and text element properties and values used CSS?
Answer:
Samacheer Kalvi 11th Computer Applications HTML – Adding Multimedia Elements and Forms Additional Questions and Answers
I. Choose The Correct Answer
Question 1.
Which tag is used to change the default characteristics of web document?
(a) Style
(b) Font
(c) Text
(d) Colour
Answer:
(a) Style
Question 2.
Which is used to define style for a particular tag anywhere in a HTML document?
(a) Internal style
(b) Inline style
(c) External style
(d) Page style
Answer:
(b) Inline style
Question 3.
CSS was invented by:
(a) Hakon Wium Lie
(b) Hakon Willium Lee
(c) Hakon Street Man
(d) Hakon Lee
Answer:
(a) Hakon Wium Lie
Question 4.
The <style> tag are also called as:
(a) page-level styles
(b) inline styles
(c) external styles
(d) both (a) & (c)
Answer:
(a) page-level styles
Question 5.
Which section is used by the <link> tag to add CSS file?
(a) Body
(b) Head
(c) Style
(d) Title
Answer:
(b) Head
Question 6.
Expand XHTML:
(a) Extensible Hypertext Markup Language
(b) Extended Hypertext Markup Language
(c) Executed Hypertext Markup Language
(d) Except Hypertext Markup Language
Answer:
(a) Extensible Hypertext Markup Language
II. Answer The Following Questions
Question 1.
What is called page-level sheets or internal sheets?
Answer:
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”.
Question 2.
What is known as sitewide style sheets or external style sheets?
Answer:
The “Internal Style Sheet” is defined and implemented only within an HTML document. If you want use the same style to multiple pages, you should define styles as a separate style file. These separate style files are known as “Sitewide Style Sheets” or ‘”External Style Sheets”.
III. Answer The Following Questions
Question 1.
Write the suitable example for creating CSS style?
Answer:
P {
font-style : Italic;
color :MediumSeaGreen;
}
H1
{
border: 2px solid red;
}
The above code should be saved with extension. css
Question 2.
Write the properties and values of paragraph margin in CSS?
Answer:
IV. Answer The Following Questions
Question 1.
Write the html code to change the background colour of browser using CSS?
Answer:
– Back_Color.css —
body
{
background-color : pink;
}
Background_CSS.htm
<html>
<head>
<title> Changing Background using CSS </title>
<link rel = “stylesheet” type=”text/css” href=”Body_Color.css”> </head>
<body>
<H1> Welcome to CSS
</H1>
</body>
</html>
How to Prepare using Samacheer Kalvi 11th Computer Application Chapter 13 CSS – Cascading Style Sheets Notes PDF?
Students must prepare for the upcoming exams from Samacheer Kalvi 11th Computer Application Chapter 13 CSS – Cascading Style Sheets Notes PDF by following certain essential steps which are provided below.
- Use Samacheer Kalvi 11th Computer Application Chapter 13 CSS – Cascading Style Sheets notes by paying attention to facts and ideas.
- Pay attention to the important topics
- Refer TN Board books as well as the books recommended.
- Correctly follow the notes to reduce the number of questions being answered in the exam incorrectly
- Highlight and explain the concepts in details.
Samacheer Kalvi 11th Computer Application All Chapter Notes PDF Download
- Samacheer Kalvi 11th Computer Application Chapter 1 Introduction to Computers Notes PDF Download: Tamil Nadu STD 11th Computer Application Chapter 1 Introduction to Computers Notes
- Samacheer Kalvi 11th Computer Application Chapter 2 Number Systems Notes PDF Download: Tamil Nadu STD 11th Computer Application Chapter 2 Number Systems Notes
- Samacheer Kalvi 11th Computer Application Chapter 3 Computer Organisation Notes PDF Download: Tamil Nadu STD 11th Computer Application Chapter 3 Computer Organisation Notes
- Samacheer Kalvi 11th Computer Application Chapter 4 Theoretical Concepts of Operating System Notes PDF Download: Tamil Nadu STD 11th Computer Application Chapter 4 Theoretical Concepts of Operating System Notes
- Samacheer Kalvi 11th Computer Application Chapter 5 Working with Typical Operating System (Windows & Linux) Notes PDF Download: Tamil Nadu STD 11th Computer Application Chapter 5 Working with Typical Operating System (Windows & Linux) Notes
- Samacheer Kalvi 11th Computer Application Chapter 6 Word Processor Basics (OpenOffice Writer) Notes PDF Download: Tamil Nadu STD 11th Computer Application Chapter 6 Word Processor Basics (OpenOffice Writer) Notes
- Samacheer Kalvi 11th Computer Application Chapter 7 Spreadsheets Basics (OpenOffice Calc) Notes PDF Download: Tamil Nadu STD 11th Computer Application Chapter 7 Spreadsheets Basics (OpenOffice Calc) Notes
- Samacheer Kalvi 11th Computer Application Chapter 8 Presentation Basics (OpenOffice Impress) Notes PDF Download: Tamil Nadu STD 11th Computer Application Chapter 8 Presentation Basics (OpenOffice Impress) Notes
- Samacheer Kalvi 11th Computer Application Chapter 9 Introduction to Internet and Email Notes PDF Download: Tamil Nadu STD 11th Computer Application Chapter 9 Introduction to Internet and Email Notes
- Samacheer Kalvi 11th Computer Application Chapter 10 HTML – Structural Tags Notes PDF Download: Tamil Nadu STD 11th Computer Application Chapter 10 HTML – Structural Tags Notes
- Samacheer Kalvi 11th Computer Application Chapter 11 HTML – Formatting Text, Creating Tables, List and Links Notes PDF Download: Tamil Nadu STD 11th Computer Application Chapter 11 HTML – Formatting Text, Creating Tables, List and Links Notes
- Samacheer Kalvi 11th Computer Application Chapter 12 HTML – Adding Multimedia Elements and Forms Notes PDF Download: Tamil Nadu STD 11th Computer Application Chapter 12 HTML – Adding Multimedia Elements and Forms Notes
- Samacheer Kalvi 11th Computer Application Chapter 13 CSS – Cascading Style Sheets Notes PDF Download: Tamil Nadu STD 11th Computer Application Chapter 13 CSS – Cascading Style Sheets Notes
- Samacheer Kalvi 11th Computer Application Chapter 14 Introduction to Javascript Notes PDF Download: Tamil Nadu STD 11th Computer Application Chapter 14 Introduction to Javascript Notes
- Samacheer Kalvi 11th Computer Application Chapter 15 Control Structure in JavaScript Notes PDF Download: Tamil Nadu STD 11th Computer Application Chapter 15 Control Structure in JavaScript Notes
- Samacheer Kalvi 11th Computer Application Chapter 16 Javascript Functions Notes PDF Download: Tamil Nadu STD 11th Computer Application Chapter 16 Javascript Functions Notes
- Samacheer Kalvi 11th Computer Application Chapter 17 Computer Ethics and Cyber Security Notes PDF Download: Tamil Nadu STD 11th Computer Application Chapter 17 Computer Ethics and Cyber Security Notes
- Samacheer Kalvi 11th Computer Application Chapter 18 Tamil Computing Notes PDF Download: Tamil Nadu STD 11th Computer Application Chapter 18 Tamil Computing Notes
0 comments:
Post a Comment