WorksheetsIP-Unit 1-Quiz
Total questions: 12
Worksheet time: 5mins
What is the correct HTML for creating a hyperlink?
<a>http://www.mitujjain.ac.in</a>
<a url="http://www.mitujjain.ac.in">MITUJJAIN</a>
<a name="http://www.mitujjain.ac.in">MITUJJAIN</a>
<a href="http://www.mitujjain.ac.in">MITUJJAIN</a>
Choose the correct HTML element for the largest heading:
<h6>
<head>
<heading>
<h1>
What is the correct HTML element for inserting a line break?
<br>
<break>
<lb>
<brk>
Choose the correct HTML element to define emphasized text
<italic>
<i>
<em>
<font>
HTML comments start with <!-- and end with -->
False
True
<a> is use to
Define the area
Define the link destination
Define an article tag
Define an HTML link
What is the correct HTML for making a checkbox?
<checkbox>
<input type="check" />
<input type="checkbox" />
<check>
HTML tag for inserting an image
<img src="image.gif" alt="MyImage" />
<img href="image.gif" alt="MyImage" />
<image src="image.gif" alt="MyImage" />
<img alt="MyImage">image.gif</img>
How will you make all paragraph elements 'RED' in color ?
.p.all {color: red;}
.* {color: #990000;}
all.p {color: #998877;}
p {color: red;}
The elements <DIV> and <SPAN> have the following characteristics
Element <DIV> inherits properties defined for <SPAN> in a stylesheet
Elements <SPAN> and <DIV> define content to be inline or block-level
<DIV> and <SPAN> are used as alternatives for the element <P>
<DIV> is used inside element <P>.
Select the correct among the following for linking an external style sheet.
<link rel=“stylesheet” type=“text/css” href=“style.css”>
<style rel=“stylesheet” type=“text/css” href=“style.css”>
<link>stylesheet
<link href=“style.css”>stylesheet
