CodeHS Web Design Unit 2.4-2.10

CodeHS Web Design Unit 2.4-2.10

Assessment

Quiz

Computers

9th - 12th Grade

Medium

Created by

Jennifer Stapp

Used 20+ times

FREE Resource

Student preview

quiz-placeholder

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

True or False: As long as you cite your sources, you can put any image you find online on your website.

True

False

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following HTML code snippets would produce this on a 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>

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following tags defines a table row?

<table>

<tr>

<th>

<td>

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following tags defines a table header?

<table>

<tr>

<th>

<td>

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Which of the following HTML code snippets will generate the following table?

<table border="1">

<tr>

<th>Name</th>

<th>Score</th>

</tr>

<tr>

<td>Karel</td>

<td>32</td>

</tr>

</table>

<table border="1">

<tr>

<td>Name</td>

<td>Score</td>

</tr>

<tr>

<td>Karel</td>

<td>32</td>

</tr>

</table>

<table border="1">

<tr>

Name

Score

</tr>

<tr>

Karel

32

</tr>

</table>

<table border="1">

<th>Name</th>

<th>Score</th>

<td>Karel</td>

<td>32</td>

</tr>

</table>

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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>

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?