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

Published on: 06/09/2019
HTML - Structural Tags
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.
How many levels of heading tags are available in HTML?
6
4
8
3
2.
Which of the following symbol is used to prefix with hexadecimal value representing colour in HTML?
%
#
@
&
3.
Which of the following tag is a structural tag?
< html >
< h1 >
< br >
< p >
4.
Which section of the browser window displays the main contents?
Head
Body
Title
Heading
5.
HTML is acronym for
Hyper Transfer Markup Language
Hyper Text Markup Language
Hyper Transfer Makeup Language
Hyper Text Makeup Language
6.
How do you include an image as your web page background?
7.
How do you define comments in HTML?
8.
What is the wrong in the following coding?
< html >
< my web page >
< title > Welcome to my web page
< /head >
< /title >
9.
Explain with the help of an example the difference between container and empty elements of HTML.
10.
Sandhiya is creating a webpage. She is entering HTML code on her computer. In between, she keeps pressing “Refresh” / “Reload” button on her browser. What is the purpose?
11.
What are the HTMLwriting tools?
12.
How do you save a file as HTML file?
13.
How do you view the source file?
14.
What are the attributes available in < html >tags?
15.
Explain the attributes available with < body > tag.
1.
(a)
6
2.
(b)
#
3.
(a)
< html >
4.
(b)
Body
5.
(b)
Hyper Text Markup Language
6.
An image or picture can be applied as background to a webpage. When you insert an image as background, the text will be displayed on top of the image. Background images can be a texture or bitmap or even a photo.
The attributes to apply an image as background:
<body background = "image_name_with_extenstion">
7.
The tag <!> is used to create comments. In HTML, the text what you type within this tag is considered as comments and it is ignored by the browser. Comments never show up onscreen. Comments can be placed anywhere in HTML document.
The general form of comments: <! comments >
8.
1. </html> tag is missing
2. There is no opening tag <head>
3. </title> tag not closed properly.
Corrected Code:
<html>
<head>
<title> Welcome to my web page </title>
</head>
</html>
9.
Container Elements:
(i) The tags which require opening and closing is known as container elementsor tags.
(ii) Example: <html>, <body>, <title>, <p> etc,
Empty Elements:
(i) The tags which require only opening tag is known as empty elements or tags.
(ii) Example: <br>.
10.
Reload /Refresh button is used to get the changes from the source file:
(i) After modify and save the source file, minimize your source file.
(ii) Go to the browser.
(iii) Click Refresh (Internet Explorer)/Reload Current Page (Firefox)/Reload this page (Chrome) icons on the address bar.
(iv) Press Ctrl + R or F5 will be used to refresh / reload the modifications.
11.
HTML Writing Tools:
i) To get started writing HTML, there is no need of web server, web hosting or even internet connection. We can write, test and link web pages without a network.
ii) To create and testing a HTML document i.e. web page need an application text editor to write HTML code and a browser to view them.
12.
(i) Click File \(\rightarrow\) Save (or) Press Ctrl + S
(ii) Save as dialog box appears.
(iii) In "File Name" text box, type a file name with .htm or .html extension.
(iv) Select "All Files" from "Save as type" list box.
(v) Click "Save" button.
13.
Viewing Source file : Source file is an HTML document, what you actually type in text editor (Notepad or getit). You can view your original source fle in the browser. The following steps are to be followed to view a source file.
(i) Double click on the browser.
(ii) Select View \(\rightarrow\) PageSource(FirefoxandChrome)/ View Source (Internet Explorer) Ctrl + U (all browser).
(iii) Source file will be displayed.
(iv) In Internet Explorer, View \(\rightarrow\) Source is also used to open source file.
14.
Attributes of < html > tag:
(i) The < html > tag is used to specify the beginning and closing of an HTML document. This tag does not have any effect on the appearance of a document. This is only used to make browsers and other programs, known that this is an HTML document.
(ii) < html > tag has two attributes viz. dir and lang to specify the text direction and language setting respectively.
| Attribute | Value to be set to attribute | Description |
| dir | Itr (align left-to-right) rtl (align right-to-Ieft) | dir attribute specifies the direction of the text to be aligned within the entire document. It is global attribute. i) Itr is the default value. ii) rtl is used for Arabian languages. |
| lang | Predefined language code English - en Tamil- ta Telugu - te |
lang attribute specify the language used within the document. Predefined language code will be used for this purpose. Malayalam - ml; Kannada - kn; Hindi - hi; French - fr; German - de; |
15.
The <body> tag defines the documents body. The contents of an HTML page reside within the <body> tag. <body> tag contains several attributes.
(i) Background Colour: bgcolor = color:
By default all the browsers display the text on white background. However, the background color of the browser can be changed by using bgcolor tag.
The tag to change background colour:
<body bgcolor = color_name/color_code>
<body bgcolor = yellow>
(ii) Body text Colour: text = color: The default text colour of body section is "black; it is often called as automatic color, text attribute within body tag is used to change the text colour.
The tag to change body text colour:
<body text = color_name/color_code>
<body text = #FFFF00>
(iii) Background image: background = image:
An image or picture can be applied as background to a webpage. When you insert an image as background, the text will be displayed on top of the image. Background images can be a texture or bitmap or even a photo.
The tag to apply an image as background:
<body background = "image_name_with_extenstion">
<body background = "E:\Images\ flower01.gif">
(iv) Setting Margins:margin = value : The margin refers the blank area from left or top edge of the browser window. Generally there is no default margin setting in any bowser. If you want to leave some space as margin to left or top; leftmargin or topmargin attributes will be used respectively.
The tag to specify the left and top margin:
<body leftmargin = value topmargin = value>
<body leftmargin = 50 topmargin = 50>
11th Standard Syllabus & Materials
11th Standard
Tamilnadu 11th Standard Tamil பீடு பெற நில் - செய்யுள் - காவடிச்சிந்து Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
Tamilnadu 11th Standard Tamil பீடு பெற நில் - உரைநடை - மலை இடப்பெயர்கள் : ஓர் ஆய்வு Important Questions And Answers Study Material - QB365 Set B
NEW11th Standard
Tamilnadu 11th Standard Tamil பீடு பெற நில் - உரைநடை - மலை இடப்பெயர்கள் : ஓர் ஆய்வு Important Questions And Answers Study Material - QB365 Set A
NEW11th Standard
Tamilnadu 11th Standard Tamil மாமழை போற்றுதும் - செய்யுள் - ஐங்குறுநூறு Important Questions And Answers Study Material - QB365 Set B
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