HTML Test Review
What is the result of the following HTML code: <ol> <li>Bread</li> <li>Milk</li> <li>Eggs</li> </ol>
1. Bread 2. Milk 3. Eggs
Which of the following is the correct HTML code to create a hyperlink that displays and links to google.com?
<a href="https://google.com"> Click Me </a>
Which of the following HTML code snippets is the proper way to set the background color of an <h1> tag to be blue?
<h1 style="background-color:blue;">Hello</h1>
Which of the following is a valid HTML tag?
<h1>
Which of the following lines of HTML code will insert an image into a webpage?
<img src="https://codehs.com/static/img/logo.png">
Which of the following best describes the difference between the domain and path of a URL?
The domain specifies where the browser's request should be sent. The path specifies exactly what file is being requested.
Which of the following is an example of metadata about a web page?
The title of the web page
All of the colors you see on a computer screen are the result of a mixture of the same three colors. What are those colors?
red, green, blue
What is the domain of this URL:
www.example.com
What is the function of the <br> tag?
Create a line break on the resulting webpage
True or False: As long as you cite your sources, you can put any image you find online on your website.
False
What does HTML stand for?
Hyper Text Markup Language
Which of the following is the proper HTML code to display this image on your webpage?
<img src="https://upload.wikimedia.org/wikipedia/commons/6/62/Big_and_little_dog.jpg">
Which of the following HTML code snippets will generate the following table?
<table border="1"> <tr> <th>Name</th> <th>Score</th> <td>Karel</td> <td>32</td> </tr> </table>
Which of the following tags defines a table header?
<th>
Which of the following tags defines a table row?
<tr>
Which of the following HTML code snippets would produce the following web page: Apples Bananas Oranges
<ul> <li>Apples</li> <li>Bananas</li> <li>Oranges</li> </ul>
Which of the following actions will help you avoid violation of copyright laws?
All of the above
Which of the following is a valid color in HTML?
All of the above
Which of the following statements is true about which devices can view your website?
Any browser on any device will be able to view your webpage, because all browsers and devices on the Internet agree to use the same protocols for sending, receiving, and viewing webpages.
