Font size
WorksheetsHTML Revision 2023
Total questions: 85
Worksheet time: 46mins
This tag contains all the main contents of your webpage.
<body>
<head>
<contents>
<p>
This tag defines a heading at the smallest size.
<h6>
<h2>
<h7>
<h1>
<p> is a _______ tag.
image
paragraph
filename
_______________tag defines a line break
hr
br
th
one cell in a row of headers
one data cell
one row of headers
one column of headers
tr
one column on the right
one cell in a table
one row of anything
one column of anything
td
one cell in a header
one column of a row
one row of a column
one data cell in a row
caption
can be set only for header rows
can be set for each row
will appear at the top of table
will appear at the bottom of a table
td and th
can appear only in rows
cannot be used in rows
can be used outside of rows
can be used outside of columns
The closing table tag is
</close>
</caption>
</table>
<table>
The opening caption tag is
<table>
<caption>
<tblcaption>
<figcaption>
How more than one option can be selected in drop down?
Use of multiple attribute inside <option> tag.
Use of multiple attribute inside <select> tag.
Use of multiple attribute inside <text> tag.
It is not possible to select more than one option in drop down.
In a form, <input type="text" ...>
cannot be set to "required"
is not valid
will accept multiple lines of characters.
will accept only a single line of characters.
In a form, a drop-down list of options
begins with a select tag followed by a list of option tags.
begins with an option tag followed by a list of select tags.
begins with a select tag followed by a list of datalist tags.
begins with a datalist tag followed by a let of option tags.
What form elements are used in creating this drop-down list?
<select> and <option>
<label> and <input>
<textarea> and <input>
<select> and <input>
What HTML input type is used to create this password field?
<input type="text">
<input type="submit">
<input type="password">
<input type="radio">
What HTML input type is used to create this submit button?
<input type="text">
<input type="submit">
<input type="password">
<input type="radio">
What HTML input type is used to create this form selections?
<input type="text">
<input type="submit">
<input type="password">
<input type="radio">
What HTML input type is used to create this form checkbox?
<input type="text">
<input type="checkbox">
<input type="password">
<input type="radio">
Checkbox buttons let users select one or more of a particular set of choices
True
False
Allows users to pick just one of a number of options
Radio Button
Check Box
Drop Down List
Password Input
__________ provides an easy way to collect required information from web page visitors.
Link
Form
Image
None of the above
________ is used in form for a single line of input.
Text box
Password box
Check box
Radio box
Which one of the following is a form element?
text box.
radio button.
submit button.
All of these.
Forms can be sent using one of two methods __________ or __________
get or post
send or receive
open or close
yes or no
You can limit the characters a user may enter into the text field. For example date would be 4 numbers.
Minimumlength
Maxlength
Limit
Width
With the ____________________ method, the values from the form are added to the end of the URL specified in the action attribute.
GIF
ASK
Post
Get
Default method while submitting a form is
Post method
Set method
Get method
Put method
Cols attribute in forms text area specifies the ___
visible width of a text area
size of a text area
size of a text field
visible number of lines in a text area
Which one of the following should not be used while sending passwords or other sensitive information?
Post
Next
Get
Request
Unicode
What should I change about this tag to change the image that will appear?
<img src="cat.jpeg" alt="cat jumping"/>
img
src
cat.jpeg
cat jumping
src is short for:
source
image
screen
html
Which tag should be used to include the following image: cat.jpeg?
<img src="cats.jpg" alt="cat"/>
<img src="cat.JPG" alt="cat"/>
<img src="cat.jpeg" alt="cat"/>
<img src="dog.jpeg" alt="cat"/>
In ordered list, the default number style is ______________
A,B,C,D........
I,II,III,IV........
1,2,3,4.............
The ___________ tag is used to change the style, size and colour of the text.
<Strong>
<Font>
<center>
Unordered list is surrounded within _____________ tags.
<ol>.........</ol>
<ul>........</ul>
<dl>........</dl>
Each row in a table begins with the _____ table row tag and ends with an optional _______ tag.
<Tr>.........</Tr>
<Table>.........</Table>
<Td>.........</Td>
In a form, <input type="text" ...>
cannot be set to "required"
is not valid
will accept multiple lines of characters.
will accept only a single line of characters.
What form elements are used in creating this drop-down list?
<select> and <option>
<label> and <input>
<textarea> and <input>
<select> and <input>
What HTML input type is used to create this password field?
<input type="text">
<input type="submit">
<input type="password">
<input type="radio">
What HTML input type is used to create this submit button?
<input type="text">
<input type="submit">
<input type="password">
<input type="radio">
What HTML input type is used to create this form selections?
<input type="text">
<input type="submit">
<input type="password">
<input type="radio">
What HTML input type is used to create this form checkbox?
<input type="text">
<input type="checkbox">
<input type="password">
<input type="radio">
Checkbox buttons let users select one or more of a particular set of choices
True
False
Allows users to pick just one of a number of options
Radio Button
Check Box
Drop Down List
Password Input
________ is used in form for a single line of input.
Text box
Password box
Check box
Radio box
Which one of the following is a form element?
text box.
radio button.
submit button.
All of these.
Which HTML element defines the title of a document?
<meta>
<head>
<title>
What is the correct HTML for making a text area?
<input type="textarea">
<textarea>
<input type="textbox">
What is the correct HTML for making a drop-down list?
<input type="list">
<list>
<select>
<input type="dropdown">
