HTML Quiz
HTML is a procedural programming language.
False
Which character is used to indicate an end tag?
/
What would you use to make a bulleted list?
<ul>
What is the correct HTML for creating a hyperlink?
<a href="http://www.w3schools.com">W3Schools</a>
What is the correct HTML element for inserting a line break?
<br/>
Choose the correct HTML element for the largest heading
<h1>
Choose the correct HTML element for the smallest heading:
<h6>
Choose the correct HTML element to define italicized text?
<i>
What is the correct HTML for making a checkbox?
<input type="checkbox">
What would you use to make a numbered list?
<ol>
Choose the correct HTML element to define "important" text that should be bold.
<strong>
Which of the following would be valid for creating a table row with one data value?
<table><tr><td>Data</td></tr></table>
__________ allows the programmer to describe or specify the style and presentation of a web page separate from its content.
CSS
What does HTML stand for?
Hypertext Markup Language
Who sets standards for the Web?
The World Wide Web Consortium
HTML5 is the current standard markup language for web programming.
True
Inline elements are normally displayed without starting a new line
True
JavaScript and other scripting languages can be used with HTML to add more functionality to the web page.
True