Advertisements
Advertisements
______ refers to the gap between those who have access to technology and those who do not.
Concept: undefined > undefined
Which one of the following is not an e-commerce website?
Concept: undefined > undefined
Advertisements
Collection of hyper linked documents available on the internet is known as ______.
Concept: undefined > undefined
The attribute of the <IMG> tag used to specify the location of an image is ______.
Concept: undefined > undefined
Write the names of any two commonly used Web Browsers.
Concept: undefined > undefined
Rohan is creating a Web page in HTML. He wants to insert a link in his Web page to appear with the text "Click to Open" which on clicking should open the URL named 'http://www.Mywebsite.com' in a new window. Help him to write the HTML code to create the hyperlink.
Concept: undefined > undefined
Which of the following is not an attribute of <img> tag in HTML?
Concept: undefined > undefined
How can we reduce the digital divide? Give any two points.
Concept: undefined > undefined
The ______ attribute of <img> tag specifies an alternate text for an image if the image cannot be displayed.
Concept: undefined > undefined
- Assertion (A): A search engine is a hardware device that searches for any websites on the World Wide Web.
- Reason (R): Google Search and Microsoft’s Bing are two popular search engines.
Concept: undefined > undefined
Abhilasha has just designed a web page. At the end of the web page, she wants to insert an image “next.jpg”. She needs to link another web page with this image, i.e., whenever anyone clicks on the image “next.jpg”, another web page named “second.html” should open. Help her in writing the code to achieve it.
Note: Assume that image and both the web pages are stored in the same folder.
Concept: undefined > undefined
What do you understand by the term “Digital Divide”?
Concept: undefined > undefined
Name any 2 issues related to privacy in e-commerce.
Concept: undefined > undefined
Explain the concept of Submit and Reset buttons in HTML forms.
Concept: undefined > undefined
A ______ is an online journal or informational website run by an individual, group, or corporation that offers regularly updated content about a topic.
Concept: undefined > undefined
Customer Analytics firm needs to design a survey form as shown below:
Write suitable HTML code to design it.
Concept: undefined > undefined
Gulzar is a talented musician. He is trying to create a web page so as to share his creations with music lovers across the world. He wants to embed audio and video files in the web page with the following specifications:
To embed audio files:
- The name of the audio file is GulzarNotel.mp3
- The audio should start playing automatically when the page loads.
- The audio controls such as Play, Pause, and Volume should be visible.
To embed video files:
- The name of the video file is GulzarMoviel.mp4.
- The video should play in a window of width 350 pixels and a height of 250 pixels.
- The video controls such as Play, Pause, and Volume should be visible.
To complete the task, Gulzar has written the following HTML code:
To embed audio:
<audio controls autoplay>
<source src="GulzarNotel.mp3''>
</audio controls>
To embed video:
<video width = "350" height = "250">
<source src = "GulzarMoviel.mp4">
</video>
Gulzar is not getting the desired output as the code contains errors. Rewrite the correct statements to help him to complete the task. Underline all the corrections made.
Concept: undefined > undefined
How can we embed audio in an HTML document? Give an example to support your answer.
Concept: undefined > undefined