ACTUAL Exam Questions and CORRECT
Answers
What does HTML stand for? - CORRECT ANSWER - Hyper Text Markup Language
Who is making the Web standards? - CORRECT ANSWER - The World Wide Web
Consortium
Choose the correct HTML element for the largest heading:
Top of Form
<head>
<heading>
<h6>
<h1> - CORRECT ANSWER - <h1>
What is the correct HTML element for inserting a line break? - CORRECT ANSWER - <br>
What is the correct HTML for adding a background color?
<body style="background-color:yellow;">
<body bg="yellow">
<background>yellow</background> - CORRECT ANSWER - <body style="background-
color:yellow;">
Choose the correct HTML element to define important text - CORRECT ANSWER -
<strong>
Choose the correct HTML element to define emphasized text - CORRECT ANSWER - <em>
, What is the correct HTML for creating a hyperlink?
<a>http://www.w3schools.com</a>
<a href="http://www.w3schools.com">W3Schools</a>
<a name="http://www.w3schools.com">W3Schools.com</a>
<a url="http://www.w3schools.com">W3Schools.com</a> - CORRECT ANSWER - <a
href="http://www.w3schools.com">W3Schools</a>
Which character is used to indicate an end tag? - CORRECT ANSWER -/
How can you open a link in a new tab/browser window?
<a href="url" new>
<a href="url" target="new">
<a href="url" target="_blank"> - CORRECT ANSWER - <a href="url" target="_blank">
Which of these elements are all <table> elements?
<thead><body><tr>
<table><head><tfoot>
<table><tr><tt>
<table><tr><td> - CORRECT ANSWER - <table><tr><td>
T/F: Inline elements are normally displayed without starting a new line. - CORRECT
ANSWER - True
How can you make a numbered list? - CORRECT ANSWER - <ol>
How can you make a bulleted list? - CORRECT ANSWER - <ul>