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: 15/10/2019
HTML - Adding multimedia elements and Forms
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 will you insert video and sound in a webpage?
2.
How will you insert an image in a HTML document?
3.
Explain any 2 use of the < Marquee > tag.
4.
Answer the following: True or false.
(i) < Text area > tag used to receive multiline text data as input
(ii) < Input > tag is a container tag
(iii) user can select more than one option using radio button control
5.
Explain the use of < select > tag.
6.
Write a note on method attribute of < form > tag.
7.
What is the use of form in HTML?
8.
Write a note on following attribute of < Marquee > tag?
(i) Scroll delay
(ii) Scroll amount
(iii) loop
9.
What is the use of align attribute of < img > tag? Explain its values.
10.
Explain the main attributes used with < form > tag.
1.
1. The < embed > tag is used to attach an audio or video file easily within webpage.
2. This tag includes the controls of the- multimedia automatically in the browser.
3. The < noernbed > tag may be used as an alternate to display some other media file, in the case of the browser does not support < embed > tag.
Src is the primary attribute used with < embed > tag. The src attribute used to specify the name of the media file with its source location. Other attributes such as alt, height, width and align are used as it is used with < img >.
General Format:
< embed src = audio / video file name with location > < /embed >
An HTML code to demonstrate adding audio and video files (internal source):
< html >
< head >
< title > Adding Multimedi Files < /title >
< /head >
< body >
< img src="D:\Images\TN_Logo.
png" alt =, "Govt. of Tamilnadu Logo"
height=25% width = 15% >
< marquee > Welcome to < b > The State
Council of Educational Research and
Traning < /b >, Tamilnadu < /marquee >
2.
Inserting Images with HTML document
The < IMG > tag along with the attribute src (Source) is used to add images in HTML document.
General format:
< img src = image_name_with_extension > (OR)
< img src = URL >
Ex:
< img src = image1.gif >
Src attribute is the main attribute used to specify the filename of the image to be inserted.
If the image is not in the current working folder, image file name should clearly specify with the path of the file or URL, where the file is available.
Ex:
< img src = "D:\images\animals\cat.jpeg" >
An HTMLcode to insert an inline image:
< html >
< head >
< title > Inserting Images < /title >
< /head >
< body >
< h1 align = center > Bharathiyar< /h1 >
< img src = bharathiyar.gif >
< /body >
< /html >
3.
(i) Direction:
1. This is used to specify the direction of the movement of text or image.
2. The text or image will move towards right to left by default. So, the default direction is left.
3. The Possible values are 'up', 'down', 'left' or 'right'.
(ii) Behaviour:
1. This attribute is used to specify the type of scrolling.
2. The values are 'scroll', 'slide' and 'alternate'.
4.
(i) True
(ii) False
(iii) False.
5.
The < select > tag is used to create dropdown list box in HTML. It provides a list of various options as a dropdown list. This element is more helpful when a number of options are to be displayed in a limited space.
6.
The method attribute of the form tag is used to identify how the form element names and values will be sent to the server. The get method will append the names of the form elements and their values to the URL. The post method will send the names and values of the form elements as packets.
7.
Forms are used to receive information from the user:
1. Forms are commonly used to allow users to register on a Web site, to log in to a Web site, to order a product, and to send feedback.
2. In search engines, forms are used to accept the keywords for search.
8.
(i) Scroll delay:
This attribute is used to define the time delay between each jump. The time unit should be in seconds.
(ii) Scroll amount :
This is used to define the speed of the scroll.
(iii) Loop:
This is for defining how many times the marquee element should repeat on the screen. The default value is 'infinite', which means the marquee element scrolls endlessly.
9.
Align:
The align attribute used to aligns the image with respect to the base line of the text. This attribute has the following values.
(i) Bottom - Aligns the bottom of the image with the baseline of the text. This is the default setting.
(ii) Middle - Aligns the middle of the image with the baseline of the text.
(iii) Top - Aligns the top of the image with the baseline of the text.
Left and Right values of Align attribute:
Using left and right values with align attribute, displayed the image on the left and right side of the text.
An HTMLcode to demonstrate baseline of text:
< html >
< head >
< title > Attributesof < img > tag < /title >
< /head >
< body >
< h2 > Attributes of imagetag < /h2 >
< img src="D:\Images\Bird.jpg" alt =
"ParrotImage" >
This text is aligned in the bottom of the
imageby default < br > < br > < br >
< img src="D:\Images\Bird.jpg" alt =
"ParrotImage" align=top >
This text is aligned in the top of the
image
< br > < br >
< img src="D:\Images\Bird.jpg"
alt="Parrot Image" allqn=middle >
This text is alignedon the middleof the
image
< /body >
< /html >
10.
The important attributes used with the < form > tag are method and action attributes.
(i) Method : The method attribute of the form tag is used to identify how the form element names and values will be sent to the server. The get method will append the names of the form elements and their values to the URL. The post method will send the names and values of the form elements as packets.
(ii) Action: The action attribute identifies the server side program or script that will process the form. The action will be the name of a Common Gateway Interface (CGI) program written in programming languages, like Perl, JavaScript, PHP or Active Server Pages (ASP).
General Format of < form > tag
< Form method=get/post action= "back_end_server_script" >
Form elements
< /Form >
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