Font size
WorksheetsWeb Design - Unit 2 CodeHS
Total questions: 25
Worksheet time: 13mins
Which of the following would be considered a property formatted HTML tag?
<h1>Hello World<h1>
<h1>Hello World</h1>
<h1 text="Hello World">
</h1>Hello World<h1>
Most HTML tags have both an opening and a closing tag. Which of the following only has one tag (i.e. an opening tag, but no closing tag)?
<a>
<html>
<style>
<img>
What is generated from the following HTML code:
Hello
Hello
Hello
Which of the following will create a link to https://www.example.com?
Which statement about formating an image’s size is true?
When creating an image, you must specify both a height and a width.
When creating an image you must specify either a height or a width, but not both.
When creating an image, you can optionally specify a height or a width, or both.
When creating an image, you do not have to specify a height or width, but if you do specify one, you must specify the other.
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
- Bread
- Milk
- Eggs
a. Bread
b. Milk
c. Eggs
* Bread
* Milk
* Eggs
Which of the following could create the following text?
<h3 font-size:50px">Web Design</h3>
<h1 font-size:50px">Web Design</h1>
<p style="font-size:50px"><strong>Web Design</strong></p>
All of these
Suppose you are making a music streaming website and you want to make a page that displays a user’s music library.
Which of the following is the proper HTML code to create the following table:
Which of the following is NOT a correctly formatted text color style?
style=”color:navy”
style=”color:rgb(236, 26, 189)”
style=”color:rgb(300, 100, 150)”
style=”color:#abcdef”
What is Creative Commons?
A non-profit organization that promotes free and open access to creative works.
A licensing system that allows creators to share their work while retaining certain rights.
A collection of copyright laws that restrict the use of creative works.
A platform for artists to sell their artwork online
Which of the following is a valid HTML tag?
h1
<>
<h1>
>h1<
What does HTML stand for?
Hidden Text Meta Language
Hyper Text Markup Language
Hidden Theme Markdown Level
Hyper Text Markdown Language
Which of the following is an example of metadata about a webpage?
The title of the webpage
The body of the webpage
An <h1> tag on the webpage
All of the above
What is the function of the <br> tag?
Create a line break on the resulting webpage
Create a horizontal line on the resulting webpage
Italicize text
Bold text
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>
<a href="Click Me"> https://google.com </a>
Click Me <a>https://google.com</a>
<a> Click Me </a href="https://google.com">
Which of the following lines of HTML code will insert an image into a webpage?
<img>
https://codehs.com/static/img/logo.png
</img>
<img> src="https://codehs.com/static/img/logo.png" </img>
<img src="https://codehs.com/static/img/logo.png">
Which of the following HTML code snippets would produce the following web page:
* Apples
* Bananas
* Oranges
<ul>
Apples
Bananas
Oranges </ul>
<ol> Apples Bananas Oranges </ol>
<ul> <li>Apples</li> <li>Bananas</li> <li>Oranges</li> </ul>
<ol> <li>Apples</li> <li>Bananas</li> <li>Oranges</li> </ol>
Which of the following tags defines a table row?
<table>
<tr>
<th>
<td>
Which of the following tags defines a table header?
<table>
<tr>
<th>
<td>
True or False: As long as you cite your sources, you can put any image you find online on your website.
TRUE
FALSE
Which of the following actions will help you avoid violation of copyright laws?
Always cite the source of the image
Check the copyright of the image to make sure it can be used by others without permission
Limit your searches to public domain images
All of the above
Which of the following HTML code snippets is the proper way to set the background color of an <h1> tag to be blue?
<blue>
<h1>Hello</h1>
</blue>
<h1 background-color="blue">Hello</h1>
<h1 style="blue">Hello</h1>
<h1 style="background-color:blue;" >Hello</h1>
Which of the following is a valid color in HTML?
“blue”
“rgb(255, 0, 0)”
“#00FF00”
All of the above
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, yellow, blue
green, orange, purple
red, green, blue
red, green, yellow
The number range for RGB colors is 0 to (a)
