NEW
Font size
WorksheetsIMSD_Week-1_CSE-1
Total questions: 10
Worksheet time: 5mins
What attribute defines the URL of an image in HTML?
href
src
link
url
What happens if the image file specified in <img> tag is not found?
Page breaks
An empty box with alt text is shown
Browser ignores it silently
Error message displayed in red
Which of the following will open a link in a new tab or window?
<a href="page.html" new>
<a href="page.html" target="_new">
<a href="page.html" target="_blank">
<a href="page.html" target="open">
Identify the correct syntax to link an email in HTML.
<a href="mail:info@example.com">Mail</a>
<mail href="info@example.com">Mail</mail>
<a href="mailto:info@example.com">Mail</a>
<a mailto="info@example.com">Mail</a>
In nested lists, which tag defines a list inside another list?
<sublist>
<nested>
<li> containing <ul> or <ol>
<list> inside <list>
What does the <dl> tag represent?
Data List
Directory List
Document List
Definition List
Consider this code:
<a href="https://www.google.com" target="_self">Google</a>
What happens when clicked?
Opens in same tab
Opens in a new tab
Opens in a popup
Doesn’t open
What will be the output of this code?
<a href="https://example.com"><img src="logo.png"></a>
Which of the following correctly creates a hyperlink to open a PDF in a new tab?
<a link="file.pdf" target="new">Download</a>
<a href="file.pdf" target="_blank">Download</a>
<a url="file.pdf" target="open">Download</a>
<a src="file.pdf" target="_blank">Download</a>
Which tag defines a line break in HTML?
<lb>
<break>
<br>
<line>
