Chapter 6 : Links and Frames in HTML 5 - Answer the following questions

 

Cyber Quest (Kips Publication)

Class 08

Chapter - 6 

Links and Frames in HTML 5

E.    Answer the following questions.

1.    Why do you include hyperlinks in your web page? Give any two reasons.

Ans: Hyperlinks are used to create an external link by which we can move from one web page to another.
It is required sometimes when we wants to link  several web pages related to a topic or content.

2.    Distinguish between internal and external linking.

Ans: Hyperlinks are used to create an external link by which we can move from one web page to another.
Hyperlinks are used to create an internal link by which we can move from one location to another within the same web page.

3.    Describe the use of anchor tag. Give syntax.

Ans: Anchor <a> tag is used to create link in HTML.
The link either can be external, internal or email.
Syntax : <a href="url/location">Text to be clicked</a>

4.    List the tags that you use to include audio and video clips. Also, give syntax and attributes of these tags.

Ans: For audio clips <audio> tag is used and for video clips <video> tag is used.
They have common attributes :
a.    controls - display buttons like paly, pause, volume, etc.
b.    autoplay - start video/audio automatically as the page load.
c.    muted - starts the video/audio in muted (no sound)
d.    loop - plays the video/audio continously
e     height - set the screen height
f     width - set the screen width 
g    src - source/location of audio/video

Syntax : <video src="address" controls autoplay loop muted width="value" height="value>
               <audio src="address" controls autoplay loop muted>


5.    What are frames? How are they useful?

Ans: Frames allows multiple HTML documents to be presented as independent windows without one browser window.






Comments

Popular posts from this blog

Home Page : Information Technology