Font size
WorksheetsMIDTERM QUIZ IN WEB DEV 101
Total questions: 25
Worksheet time: 4mins
Which among the following is correct HTML code for making a checkbox?
<checkbox>
<input type="checkbox">
<check>
<input type="check">
HTML tags are surrounded by______brackets.
Angle
Curly
Round
Square
These simple, east-to-use program allows you to enter, edit, save and print text.
Web browser
Text editor
Search engine
Domain name
Which of the following tags contains most of the html code?
<html>
<p>
<body>
<head>
The src attribute in the <img> tag references which of the following:
a paragraph
an image file
a sound
a head
What is the hyperlink on the webpage?
"Yen Ching" text
Nothing. There is a typo inside the <a> tag.
The picture of the chicken
Nothing. There is no content between the <a> and </a> tags.
What file name could be a picture?
BK.jpg
BK.gif
BK.png
BK.html
What is the correct syntax for inserting an image?
<img src> chipotleGuac.jpg </img>
<src img="chipotleGuac.jpg">
<img src="chipotleGuac.jpg">
<src img> chipotleGuac.jpg </img>
What is wrong with the following hyperlink?
Nothing.
The closing tag is missing the slash </a>
There is no content between the opening and closing <a> tags.
HREF is misspelled as HERF
What is wrong with the following image tag?
Nothing
SRC is misspelled as SCR
It is missing the closing </img> tag
SRC comes before IMG
Which code below is correct for a hyperlink
<a>
"https://google.com"
Click Me
</a>
<a>Click Me>
"https://google.com"
</a>
<a herf="https://google.com">
Click Me
</a>
<a href="https://google.com">
Click Me
</a>
To help users know what to put in field, use
<input name="firstname">
<label for="firstname">
<input type="text" id="firstname>
<input type="text" id="firstname" name="label">
<input label="First Name" type="text">
An Email address field in a form
<input type="email" id="email">
<input type="text" id="email">
<label for="email">
<email type="text" id="email">
<input text="email" id="email">
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.
A comment field for multiple lines of text
<label for="comments">
<comments type="textarea" id="comments">
<label for="textarea">
<input type="textarea" id="textarea">
<input type="textarea" rows="6" cols="50">
<textarea rows="6" cols="50"></textarea>
A button tag
<input type="button" value="Name on Button"></input>
<input type="button">Name on Button</input>
<button name="abc" onclick="">
<button name="abc" onclick="">Name on Button</button>
Which allows the user to pick just one of a number of option
Checkbox
Radio button
Drop down list
Password input
The _______ tag is used to create an HTML form for user input.
<fieldset>
<input>
<form>
<label>
<input type="___________" name="gender" value="male"> Male
<input type="___________" name="gender" value="female">Female
(Fill the type of input which used to select just one option.)
(a)
HTML form is used for/to
Collect user input
It is not a section of a document
Contains password control only
Users can enter data in specific fields
to capture website visitors' information
