ADDITIONAL QUESTION
SEBA
CLASS - 10
Note: The star💥 mark contained question specify that they are most likely to come
in examination and very important. But I suggest you to read all the
questions that I post on my site. |
1. What is the use of anchor tag <a> use?
An anchor tag is used to create a link.
💥 . What are frames? What are it uses?
Frames are a part of a webpage or browser window which displays content
independently of its container, with the ability to load content independently.
Frames are used to divide your browser window into multiple section
where each section can load a separate html document.
3. What is the use of an inline frame?
An inline frame is used to embed another document within the current html document.
4. Write the steps to link to an anchor?
To link to an anchor, we need to accomplish the
following steps:
i) Create an anchor
ii) Create a link pointing to an anchor.
💥 . How an anchor or bookmark inside an HTML5 document created?
An anchor or bookmark inside an HTML5 document is created using the id attribute.
💥 . Explain the different values that can be assigned to the target
attribute of the <a> tag?
The different values that can be assigned to the
target attribute of the <a> tag are:
i) _blank: opens the linked document in a new browser window or a new
tab.
ii) _parent: Opens the linked document in the parent frame.
iii) _self: Opens the linked document in the same frame.
iv) _top: Opens the linked document in full browser window.
7. What is a link (standard link) and what is it default color.
Standard link specifies a link that has not been visited yet. The default color of this link is blue.
8. What is a visited link and what is it default color?
Visited link is a linked that the visitor has visited. Its default color is purple.
9. What is active link and what is it default color?
Active link refers to the link that is clicked. Its default color is red.
10. What is a hover?
Hover is a link that appears when the user moves the mouse over it.
💥 . Shat is the different between visited link and active link?
The different between visited link and active link
are:
VISITED LINK |
ACTIVE LINK |
I) Visited link specify a link that the visitor has visited |
i) Active link refers to a link its clicked. |
ii) Its default color is
purple |
ii) Its default color is red |
12. What is the use of <iframe> tag?
The <iframe> tag is used to define an inline frame that enable you to present another HTML document within the same window. It is non paired tag.
💥 . Explain the attributes of <iframe> tag and give the value of
each.
The attributes of <iframe> tag are:
i) Src: It is used to display the URL of the web page in the frame. It value are
written in URL.
ii) Width: It is used to specify the width of the inline frame. It
values are written in pixel.
iii) Height: It is used to specify the height of the inline frame. It
values are written in pixels.
iv) seamless: It is used to show an inline frame as a part of the containing element. Its values are empty / seamless.
14. Explain the attribute of <audio> tag and give the value of each.
The attributes of <audio> tag are:
i. Auto play- it is use to play the audio file automatically when the web
page is loaded. Its value is auto play.
ii) Control- it is used to display the controls on the web page. Its value
is controls.
iii) Src: It is use to specify the URL of the audio file. Its value
are written in URL.
iv) Loop: It is use to indicate if the audio file should be replayed once it has finished. Its value is loop.
💥 . Explain the attributes of <video> tag and give the value of each?
The attributes of <video> tag are:
i) src: It specify the URL of the video file to be played. Its value are written
in URL.
ii) Height: It specifies the height of the video played on the web page.
Its value are written in pixel.
iii) width: It specifies the width of the video player displayed on the
web page. Its value are written in width.
iv) Auto play: It is use to play the video file automatically on loading
the web page. Its value is auto play.
v) Controls: It is used to display the controls on the web page., such as play, pause, fast forward button, its value is controls.
16. This attribute is used to set the URL of the target resource, which
is the address of the document to link to. What is the attribute?
The href attribute is used to set the URL of the target resource means we have to give the address or URL in the href attribute. Example <a href= “http://www.compguide2.blogspot.com”> Website <a/>.
💥 . Mona knows that, by default link opens in the current window. But she wants that link to open in another window. Write the HTML code to help her so that she will get the desire result.
<html>
<head>
<title>ADDING
LINK </title>
</head>
<body>
<a
href= “ http://www.compguide2.blogspot.com” target= “_blank”> Website <a/>.
</body>
</html>
💥 . Harsha want to have an image link so that if some one click the
image, then he/she is directed to another page. With this view he has written
as follows:
<a src = “environ.html>
<img = “env.gif”>
But she is not getting the result. Identify the error(s) and write the
correct code.
<html>
<head>
<title>IMAGE AS LINK </title>
</head>
<body>
<a
href= “environ.html”> <img src = “env.gif”> <a/>.
</body>
</html>
💥 . Rina has written an HTML code as follows
<a =notebook” book.html> book information </a>
So that output would be book information (click it will open book.html)
but she is not getting the result. Help her to accomplish the task:
<html>
<head>
<title>IMAGE AS LINK </title>
</head>
<body>
<a
href= “book.html”> book information <a/>.
</body>
</html>
💥 . Runu has written the following code with the view to divide the
window on the basic of columns. But she is not getting the result. Help her to
solve the problem:
<frame cols= “40, 50”>
<!doctype html>
<html>
<head>
<title> FRAME
SET....!</title>
<frameset
cols= "40, 50">
<frame
src= "" >
<frame src= "">
</frameset>
</head>
<body>
</body>
</html>
SHARES YOUR EXPRESSION AND LINK OF THIS BLOG TO HELP OTHER STUDENTS.
0 Comments