Choose Three correct answers
from the given options.
1. Attributes of <area> tag
is……………………..
a) href b) src
c) coords d) data
e) alt f) usemap
2. Attributes used with iframe
are………………..
a) srcdoc b) name
c) att d) src
e) href f) loop
3. Following are the Form
controls……………
a) email b) search
c) label d) video
e) tel f) audio
4. Attributes used with <audio>
tag…………………………..
a) autoplay b) href
c) controls d) cntrl
e) loop f) bgsound5. CSS types are …………………,
………...... and…………………
a) internal b) external
c) control d) inline
e) loop f) style
6. Positioning types in CSS
are……………………
a) Static b) fixed
c) absolute d)position
e) dynamic f) nested
7. Types of floating properties
are………,…………, …………..
a) left b) zero
c) right d) all
e) none f) dock
Answers
Answer:
1. href,coords,alt
2.srcdoc,name,src
4.autoplay,controls,loop
5.inline,internal,external
6.static,fixed,absolute
7.left,right,none
Answer:
1.Attributes of <area> tag is
a) href
b) src
c) coord
- The area> tag denotes a region within an image map (an image map is an image with clickable areas).
- Area> elements are always contained within a map> tag.
- The usemap attribute in img> is linked to the map> element's name attribute, establishing a link between the image and the map.
2.Attributes used with iframe are
a)srcdoc
Specifies the HTML content of the page to show in the <iframe>
b)name
Specifies the name of an <iframe>
d)src.
Specifies the address of the document to embed in the <iframe>
3. Following are the Form controls
a) email
b) search
e) tel
- A form is a Web page component that contains form controls such as text fields, buttons, checkboxes, range controls, and colour pickers.
- A user can interact with such a form, providing information that is then sent to the server for further processing
4.Attributes used with <audio> tag
a) autoplay
Specifies that the audio will start playing as soon as it is ready
c) controls
Specifies that audio controls should be displayed (such as a play/pause button etc)
5.CSS types are
a) internal
An internal stylesheet holds CSS rules for the page in the head section of the HTML file
b) external
An external stylesheet is a standalone .css file linked from a web page.
d) inline
Inline styles relate to a specific HTML tag, using a style attribute with a CSS rule to style a particular page element.
6. Positioning types in CSS are
a) Static
The element is positioned according to the normal flow of the document.
b) fixed
The element is removed from the normal document flow, and no space is created for the element in the page layout
c) absolute
The element is removed from the normal document flow, and no space is created for the element in the page layout.
7. Types of floating properties are
a) left
c) right
e) none
The float CSS property positions an element to the left or right of its container, allowing text and inline elements to wrap around it.
#SPJ3