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: 07/09/2019
HTML - Formatting text, Creating Tables, List and Links
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.
Which of the following tags are called as physical style tags?
< html >, < b >, < br >
< b >, < br >, < u >
< A >, < b >, < i >
< b >, < i >, < u >
2.
To create internal link, which of the following attribute should be used?
link
name
local
Inter
3.
A list block can be defined inside another list is:
Inner List
Nested List
Outer List
Listing List
4.
The tags < sub > and < sup > are used for:
Subject and Super
Subscript and Super
Subject and Superscript
Subscript and Superscript
5.
Which feature is used to call attention to the reader?
Highlight
Bold
Italics
Underline
6.
What are the types of list in HTML?
7.
Write about any two attributes of font tag.
8.
Write a short note on
(i) < strong >
(ii) < em >
9.
Difference between < UL > and < OL > tags.
10.
What are the core tags used to create table in HTML?
11.
Write an HTML code to display the following text in exactly the same way as given below.
I am studying Computer Application.
12.
Explain the types of list with suitable HTML code.
13.
Explain the attributes used with < table > tag in HTML.
1.
(d)
< b >, < i >, < u >
2.
(b)
name
3.
(b)
Nested List
4.
(d)
Subscript and Superscript
5.
(a)
Highlight
6.
HTML supports three types of lists viz. numbered, unnumbered and definition, These lists are called as Ordered List, Unordered List and Definition List respectively.
7.
(i) Face: The face is an attribute to set different font style. The name of a font has multiple words it should be specified within double quote.
(ii) Size : The size attribute is used to set size of the text. The size can have an absolute value from 1 to 7. These predefined sizes are known as virtual size. Each virtual size is successively 20% larger than the previous one.
8.
(i) < strong > Important text :The < strong > tag is a phrase tag. It is used to define important text. This tag displays the text as bold.
(ii) < em > Exphasized text : The < em > tag is used to emphasize the text. That means, when this tag used the text will be in italics.
9.
| <UL> | <OL> |
| It is used to create unordered list | It is used to create ordered list |
| It displays items in a numerical or alphabetical order | It displays items prefixed with a special bullet symbol |
| It has a type value Standard Arabic numerals, lower case letters, upper case, letters, lower case Roman Numerals, Upper case Roman numerals | It has a type value Disc, Square, Circle |
10.
There are five core tags are used to create a table in HTML. They are
(i) < table > tag is used to create a table
(ii) < tr > tag defines table rows
(iii) < th > tag defined table columns
(iv) < td > tag is used to specify the data in a cell
(v) < caption > tag defines title for the table.
11.
< Html >
< Head >
< title >Html< /title >
< /head>
< body >
I am studying Computer Application
< /body>
< /html >
12.
HTML supports three types of lists viz. numbered, unnumbered and definition. These lists are called as Ordered List, Unordered List and Definition List respectively.
(1) Numbered List /Ordered List :Numbered listis created within the tag pair < OL > .........< OL > tag. The tag < LI > is used to present the list item in the list. Ordered list displays items in a numerical or alphabetical order. Both < OL > and < LI > tags are container tags. But the usual the practice, closing tag < /LI > is normally not used.
Program :
< html >
< head >
< title > Number List < /title >
< /head >
< body >
< OL >
< LI > Tamil
< LI > Telugu
< LI > English
< LI > Computer Application
< LI > Commerce
< LI > Accountancy
< LI > Economics
< /OL >
< /body >
< /html >
The output will be:
1. Tamil
2. Telugu
3. English
4. Computer Application
5. Commerce
6. Accountancy
7. Economics
(ii) Un-numbered List / Unordered List: Unordered lists are often referred as bulleted lists.Instead of numbers, each element in the list is prefixed with a special bullet symbol. Unordered list is surrounded within < UL > .........< /UL > tags. As discussed above, each list element is defined by < LI > tag.
Program:
< html >
< head >
< title > Unordered List < /title >
< /head >
< body >
< UL >
< LI > Chennai G Hr. Sec. School, Rotler Street, Chennai 600 112.
< LI > Karnakata Sanga Hr. Sec School, T. Nagar, Chennai 600 017.
< LI > S.M.B. Jain Hr. Sec. School, T. Nagar, Chennai 600 017.
< LI > Chennai G Hr. Sec. School, Nungambakkam, Chennai 600 034.
< LI > Chennai G Hr. Sec. School. Saidapet West,Chennai 600015
< LI > Santhome Hr. Sec. School, Mylapore, Chennai 600 004.
< /UL >
< /body >
< /html >
The output will be:
Chennai G Hr. Sec. School, Rotler Street, Chennai 600 112.
Karnakata Sanga Hr. Sec. School, T. Nagar, Chennai 600 017.
S.M.B. Jain Hr. Sec. School, T. Nagar, Chennai 600 017.
Chennai G Hr. Sec. School, Nungambakkam, Chennai 600 034.
Chennai G Hr. Sec. School, Saidapet West, Chennai 600 015.
Santhome Hr. Sec. School, Mylapore, Chennai 600 004.
(iii) Definition List :Definition list is different from other two types of list. No bullet or number is provided for the list items. In this list type, list the element has two parts.
1. A definition term
2. The definition description
Definiion list is surrounded within < DL > ............... < /DL > tags.
Definition term is presented in between < DT > ...............< /DT > tag and
Definition description should be surrounded within < DD > ..........< /DD > tag.
Program:
< html >
< head >
< title > Definition List < /title >
< /head >
< body >
< DL >
< DT > HTML< /DT >
< DD > Hyper Text Markup Language < /DD >
< DT > Webpage:< /DT >
< DD > A web page is a document that is suitable for the World Wide Web and web browsers, A web browser displays aweb page on a monitor or mobile device. < /DD >
< /DL >
< /body >
< html >
The output will be:
HTML:
Hyper Text Markup Language
Webpage :
A web page is a document that is suitable for the World Wide Web and web browsers. A web browser displays a web page on a monitor or mobile device.
13.
The <table> is a container tag. There are several attributes to improve the layout of the table. They are listed below:
(i) Cellspacing : It is used to set the space between cells in a table.The value should be in pixels.
(ii) Cellpadding: It is used to set the space between the contents of a cell and its border the value should be in pixels.
(iii) Border : Border attribute with <table> tag is used to specify the thickness of the border lines around the table. The value of the border attribute should be non zero value in pixels. If its value is zero, HTML displays the table without border. The default value is Zero in most of the browsers.
(iv) Bordercolor : It is used to apply colour to the border lines.
(v) Align : It is used to set the position of the table within the browser window. Left is the default position. Right or centre may be the value of align attribute.
(vi) BGcolor : It is used to apply background colour to the table.
(vii) Height and Width : These two attributes are used to specify the height and width of a table in terms of pixels or percentage.
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