100%
What does HTML stand for? - ANSWERHyper Text Markup Language
Who is making the Web standards? - ANSWERThe World Wide Web Consortium
What is the correct HTML element for the largest heading? - ANSWER<h1>
What is the correct HTML element for inserting a line break? - ANSWER<br>
What is the correct HTML for making a checkbox? - ANSWER<input
type="checkbox">
What is the correct HTML for making a text input field? - ANSWER<input
type="text">
What is the correct HTML for making a drop-down list? - ANSWER<select>
What is the correct HTML for making a text area? - ANSWER<textarea>
What is the correct HTML for inserting an image? - ANSWER<img src="image.gif"
alt="MyImage">
What is the correct HTML for adding a background color? - ANSWER<body
style="background-color:yellow;">
What is the correct HTML element to define important text? - ANSWER<strong>
What is the correct HTML element to define emphasized text? - ANSWER<em>
What is the correct HTML for creating a hyperlink? - ANSWER<a
href="http://www.w3schools.com">W3Schools</a>
Which character is used to indicate an end tag? - ANSWER/
How can you open a link in a new tab/browser window? - ANSWER<a href="url"
target="_blank">
Which of these elements are all <table> elements? - ANSWER<table><tr><td>
True or False: Inline elements are normally displayed without starting a new line. -
ANSWERTrue
How can you make a numbered list? - ANSWER<ol>
How can you make a bulleted list? - ANSWER<ul>