HTML Quiz III

HTML Quiz III

7th - 11th Grade

7 Qs

quiz-placeholder

Similar activities

HTML

HTML

8th Grade

9 Qs

HTML Code

HTML Code

6th - 8th Grade

10 Qs

HTML y CSS

HTML y CSS

8th Grade

10 Qs

Web Design Quiz 1

Web Design Quiz 1

8th Grade

10 Qs

HTML Tags

HTML Tags

6th - 8th Grade

10 Qs

HTML tags L2

HTML tags L2

8th Grade

8 Qs

HTML QUIZ

HTML QUIZ

8th - 9th Grade

10 Qs

HTML Tags (Basic) Quiz

HTML Tags (Basic) Quiz

11th - 12th Grade

11 Qs

HTML Quiz III

HTML Quiz III

Assessment

Quiz

Computers

7th - 11th Grade

Medium

Created by

Natalie Price

Used 17+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Suppose you have written a web page using HTML and it is hosted at the URL yourdomain.com/home.html


Which of the following statements is true about which devices can view your website?

Only computers made after the day you publish your website can view your website. Older computers can’t understand HTML.

Only browsers on desktop computers can view your website because only desktop browsers can render HTML based web pages.

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.

Only browsers on mobile phones can view your website because only mobile browsers can render HTML based web pages.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the result of the following HTML code:


<ol>

<li>Bread</li>

<li>Milk</li>

<li>Eggs</li>

</ol>

a. Bread

b. Milk

c. Eggs

1.Bread

2. Milk

3. Eggs

-Bread

-Milk

-Eggs

*Bread

*Milk

*Eggs

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

An image is hosted at

https://upload.wikimedia.org/wikipedia/commons/6/62/Big_and_little_dog.jpg


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"></img>

<img src="https://upload.wikimedia.org/wikipedia/commons/6/62/Big_and_little_dog.jpg">

<a href="https://upload.wikimedia.org/wikipedia/commons/6/62/Big_and_little_dog.jpg">Image</a>

img>https://upload.wikimedia.org/wikipedia/commons/6/62/Big_and_little_dog.jpg</img>

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the proper format for an HTML tag?

<h1>Content Affected by Tag</h1>

<h1 Content Affected by Tag />

<h1>Content Affected by Tag<h1>

>h1<Content Affected by Tag >/h1<

5.

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?

<h1 style="blue">Hello</h1>

<blue>

<h1>Hello</h1>

</blue>

<h1 style="background-color:blue;">Hello</h1>

<h1 background-color="blue">Hello</h1>

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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>

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the correct HTML code to create a hyperlink that displays Click Me 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">