Web Design Advanced HTML CSS

Web Design Advanced HTML CSS

Assessment

Flashcard

Computers

9th - 12th Grade

Practice Problem

Hard

Created by

Wayground Content

FREE Resource

Student preview

quiz-placeholder

17 questions

Show all answers

1.

FLASHCARD QUESTION

Front

True or False: You will learn everything there is to know about HTML and CSS from CodeHS.

Back

False

2.

FLASHCARD QUESTION

Front

What is the difference between and

?

Back

is used to group and style inline elements, while

creates a line break.

3.

FLASHCARD QUESTION

Front

Who might need to look something up in HTML/CSS documentation?

Back

All of the above!

4.

FLASHCARD QUESTION

Front

Which of the following will turn the h1 tag blue as the mouse hovers over it? Options: hover > h1 { color: blue; }, h1:hover { color: blue; }, h1; hover { color: blue; }, h1, hover { color: blue; }

Back

h1:hover { color: blue; }

5.

FLASHCARD QUESTION

Front

Which of the following selects all p tags with the class alert and makes them red? Options: p.alert { color: red; }, p { .alert { color:red; } }, .alert p{ color: red; }, p alert{ color: red; }

Back

p.alert { color: red; }

6.

FLASHCARD QUESTION

Front

Which of the following is the proper way to link to the about.html page from the index.html page? Options: <a href="about">About This Site</a>, <a href="/about.html">About This Site</a>, <a href="about.html">About This Site</a>, <a href="/about">About This Site</a>

Back

<a href="about.html">About This Site</a>

7.

FLASHCARD QUESTION

Front

Which of the following is the proper way to apply the CSS code inside style.css to the home.html file?

Inside home.html:

<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
,
Inside home.html:

<head>
<style href="style.css"></style>
</head>
,
Inside style.css:

<html href="home.html">
,
Inside style.css:

applyTo {
href: home.html;
}

Back

Inside home.html:

<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?