Answers 100% Solved
What does HTML stand for?
Home Tool Markup Language
Hyper Text Markup Language
Hyperlinks and Text Markup Language - answer Hyper Text Markup Language
Who is making the Web standards?
Mozilla
Microsoft
The World Wide Web Consortium
Google - answer The World Wide Web
Choose the correct HTML element for the largest heading:
<h6>
<h1>
<heading>
<head> - answer<h1>
What is the correct HTML element for inserting a line break?
<br>
<lb>
<break> - answer<br>
What is the correct HTML for adding a background color?
<body style="background-color:yellow;">
<background>yellow</background>
<body bg="yellow"> - answer<body style="background-color:yellow;">
Choose the correct HTML element to define important text
<strong>
<important>
<b>
<i> - answer<strong>
, Choose the correct HTML element to define emphasized text
<italic>
<em>
<i> - answer<em>
What is the correct HTML for creating a hyperlink?
<a url="http://www.w3schools.com">W3Schools.com</a>
<a href="http://www.w3schools.com">W3Schools</a>
<a>http://www.w3schools.com</a>
<a name="http://www.w3schools.com">W3Schools.com</a> - 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?
<a href="url" target="_blank">
<a href="url" target="new">
<a href="url" new> - answer<a href="url" target="_blank">
Which of these elements are all <table> elements?
<thead><body><tr>
<table><tr><td>
<table><tr><tt>
<table><head><tfoot> - answer<table><tr><td>
Inline elements are normally displayed without starting a new line.
True
False - answerTrue
How can you make a numbered list?
<ul>
<ol>
<list>
<dl> - answer<ol>