NEW
Font size
WorksheetsHTML Unit Quiz
Total questions: 11
Worksheet time: 6mins
How does a browser know that a file is a webpage?
It is opened in the browser
The filename ends with .html
It appears with a browser logo next to it
It contains the <html></html> tag
Which of the following is an improper set of HTML tags?
<h1</h1>
<p></p>
<img />
<ul><li></li></ul>
Which of the following is not a proper table-related HTML tag?
table
tr
tb
td
Which of the following tags will appear the smallest?
h1
h2
h5
h4
Which of the following properly sets the src attribute?
<a src="http://google.com">Google</a>
<iframe src>http://weather.gov</iframe>
<img src="http://image.com/image.jpg">
<img>src="http://image.com/image.jpg"</img>
What is wrong with the following code?
<a href="http://onbase.com"></a>
The link will not appear, no text content
The link will not go anywhere, improper href attribute
The link is missing the src attribute
The link has an unnecessary closing tag
What is the relationship between the ul element and the li element?
The ul is the child of the li
The ul is the grandparent of the li
The ul is a sibiling to the li
the ul is the parent of the li
How will the following input element appear on the webpage?
<input type="range">
A text box
A checkbox
A slider
A radio button
How would you create a large, multi-line textbox input in HTML?
<input type="textbox">
<textarea></textarea>
<input type="textarea">
<textarea type="text">
Which attribute tells an iframe which website to display?
src
href
height
window
What is the relationship between the td and the table elements?
The td is the child of the table
The td is the cousin of the table
The td is the grandparent of the table
The td is the grandchild of the table
