WorksheetsHTML Recap
Total questions: 61
Worksheet time: 36mins
Which of the listed heading tags creates the largest heading?
H2
H3
H4
H6
HTML coding involves using ____________ to create webpages.
Tabs
Tags
Labels
Quotes
HTML stands for...
Hyper Text Markup Language
High Tech MachineLanguage
High Tech Modem Language
Hyper Tech Markup Lexicon
This coding is used to create a paragraph:
<pr></pr>
<p></p>
<para></para>
<par></par>
Which is the correct HTML tag for creating an unordered list?
<ul>
<uline>
<u>
<under>
Which tag would you use to make a heading?
<heading></heading>
<bigger></bigger>
<h></h1>
<h1></h1>
Which tag pair is used to create the largest heading?
<h1></h1>
<h9></h9>
<h type = "largest"></h>
<h6> </h6>
The beginning tag works like the "on" switch and the ending tag works like the "off" switch.
True
False
The 7th grade students want to make a list of the winners of a race using numbers They would use which HTML tag?
<ul></ul>
<ol></ol>
<list></list>
Everything visible on a web page goes between these two tags.
<body> </body>
<title> </title>
<header> </header>
None of the Above
Which of the following creates the smallest header?
<H2><./H2>
<H3></H3>
<H4></H4>
<H6></H6>
Website Content is the text, images, and other elements included in a web page.
True
False
When coding an ordered or unordered list, each separate item in the list uses this tag:
<li></li>
<list></list>
<item></item>
Which of these is another name for a web page address?
CSS
JAVA
URL
CNN
More than 90 percent of websites on the Internet are coded using HTML.
True
False
The universally accepted name for the first page on a website is
home.html
index.html
first.html
Who is considered by many to be the "Father of the World Wide Web" and the creator of HTML?"
Tim Berners-Lee
Tim Cook
Tim Sweeney
Which of the following pieces of code will create a horizontal line across the page?
<hr>
<line>
<p>
<grid>
It is a global network of billions of computers and other electronic devices.
search engine
internet
web browser
all of the above
Where does the content visible to users go in an HTML document?
<head>
<title>
<body>
<meta>
HTML stands for...
Hyper Time Multiple Language
Hyper Text Mark-up Language
Hippo T-Rex Mascot Lemur
Hipper Text Make Language
Which is the proper way to write an h1 tag
<h1>Hello</h1>
<h1>"Hello
{h1}Hello{/h1}
<h1>Hello<h1>
Which character is used to indicate an end tag?
!
#
/
\
Which set contains all of the DEFAULT tags needed to create a webpage?
<!DOCTYPE html>
<html>
<head>
</head>
<body>
</body>
</html>
<html>
<head>
</head>
<body>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
</head>
</html>
<!DOCTYPE html>
<html>
<head>
</head>
<body>
</body>
Choose the correct HTML element for the largest heading:
<head>
<h1>
<heading>
<h6>
HTML controls the _________ of a webpage.
feel
precision
structure
style
More than 90 percent of websites on the Internet are coded using HTML.
True
False
Which of the following creates the smallest header?
<H2><./H2>
<H3></H3>
<H4></H4>
<H6></H6>
What is the purpose of the <head> section in an HTML document?
To display the main content of the website
To contain metadata and links to external resources
To add interactive elements to the webpage
To add headings to the webpage
What is the primary purpose of an HTML table?
To style a webpage
To organize and display data
To create forms for user input
To add images to a webpage
Which HTML element is used to create a table?
<div>
<table>
<tr>
<td>
What does the <tr> element represent in an HTML table?
A table column
A table row
A table cell
A table header
What is the difference between <th> and <td> elements in a table?
<th> is for table rows, <td> is for table cells
<th> is for header cells, <td> is for data cells
<th> and <td> are interchangeable
<th> and <td> are interchangeable
Which CSS property is commonly used to add borders to a table?
border-collapse
border-width
border
outline
Which CSS property is used to collapse the borders between cells?
border-spacing
border-collapse
cell-collapse
collapse-borders
The < (a) > tag is used to create a table in HTML.
Each row in a table is defined using the < (a) > tag.
Table headers are created using the <_____> tag, while data cells are created using the <_____> tag.
(a)
True or False?
A table border will always appear whenever a table is being created.
True
False
The action attribute of a form
tells how the information should be sent to the server.
tells what web page or script will process the form.
lets the user select from a set of options
is a button command that processes the form
The select field in a form
is used inside an input element.
provides users with a set of options to choose from.
auto-completes as the user types data.
cannot have a default option setting.
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.
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">
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>
To group sections of a form to make it easier to read, use
fieldset
group
groupset
formset
To assign a name for a fieldset, use
caption
name
legend
title
To submit a form for processing, use
<input type="button" method="submit">
<button type="submit"></button>
<input type="submit">Submit</input>
<input type="submit" value="Submit">
Multiple Choice questions in html are referred to as...
multiple choice
dot buttons
radio buttons
circle buttons
Forms are not as relevant today as they once were.
True
False
the type attribute will specify the way the user inputs information.
True
False
The input tag will default as
a one line text box
a button
nothing it needs a type
a form
To create a form in HTML which tag would you begin with?
input
label
form
none of these
Where do users typically see forms?
login screens
social media sites
banking sites
all of the above
Which of the following paired correctly?
<button> : it defines a clickable button.
<fieldset> : it defines an HTML form to enter inputs by the user.
<label> : it defines a label for an input element.
<textarea> : it defines a caption for a <fieldset> element.
TRUE or FALSE
The id attribute of the <input> element should always be equal to the for attribute of the <label> element.
(a)
What HTML input type is used to create this password field?
<input type="text">
<input type="submit">
<input type="password">
<input type="radio">
In HTML, which attribute is used to specify that an input field must be filled out?
required
validate
formvalidate
placeholder
