WorksheetsWeb Development Beginners quiz 18
Total questions: 10
Worksheet time: 12mins
Which is an example of a complete image tag?
<img src="dog.jpg" alt="my dog"/>
<img "dog.jpg">
<src="dog.jpg" alt="my dog">
img=dog.jpg
Why do we need to write alt text for a image?
If you use an image from another website and it has been deleted by the owner, how will it affect your web page?
It wont affect my web page.
The image will also be deleted from my web page and alt text will be visible if been specified.
The image will also be deleted from my web page but no alt text will be visible.
How can I avoid an image from getting deleted from your web page, once its removed by the source owner?
Image will get deleted and we cannot avoid it.
Image won't get deleted until we delete it from our web page.
We can save that image in our laptop/pc and provide its path link in "src".
Where do we need to save image on our laptop/pc so that we can put it in our web page?
In any folder on desktop.
Inside our main folder where we saved our html file, we need to create new folder and save images in it.
Inside our main folder where we saved our html file, we need to save image.
We don't need to save it, its already saved.
Do we need to pay close attention to name and type of image that we are saving, that will be displayed on webpage?
Yes
No
Why do we need to pay close attention to image name and type that we save fro a web page?
When specifying a link of image saved on laptop/pc, which of the following is used?
image_name.image_type
image_type.image_name
image_size.image_name
image_name.image_size
Why align is used in internal CSS for a image?
To delete an image.
To resize an image.
To place an image in left or right or center.
Which of the following is correct way to add border to image?
style: " border= solid 10 px " ;
image=" border=" solid 10px"; "
border=" solid 10px";
style=" border : solid 10px;"
