Web Design Unit 3

Web Design Unit 3

10th - 12th Grade

7 Qs

quiz-placeholder

Similar activities

فيجوال بيسك

فيجوال بيسك

10th Grade

11 Qs

Chapter 6 Part 2 - 4

Chapter 6 Part 2 - 4

11th - 12th Grade

11 Qs

Privacy and Personal Information

Privacy and Personal Information

1st - 10th Grade

10 Qs

REFLEKSI TEKS WEB EDITOR

REFLEKSI TEKS WEB EDITOR

11th Grade

10 Qs

Microsoft Word

Microsoft Word

6th Grade - University

10 Qs

MODULE 9 PRE-TEST

MODULE 9 PRE-TEST

10th Grade

10 Qs

QUIZ Informatika Elemen TIK

QUIZ Informatika Elemen TIK

10th Grade

10 Qs

ULANGAN HARIAN Semester 2

ULANGAN HARIAN Semester 2

10th Grade

12 Qs

Web Design Unit 3

Web Design Unit 3

Assessment

Quiz

Computers

10th - 12th Grade

Medium

Created by

Jennie Phipps

Used 2+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a valid CSS rule?

h1 {

color="blue";

}

h1 {

color=blue;

}

<h1> {

color: blue;

}

h1 {

color: blue;

}

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

CSS rules have a selector that defines which HTML elements the rule applies to.

We’ve learned about the following CSS Selectors:

Select by tag name Select by class name Select by id name

Which of the following ranks the selectors from highest precedence to lowest precedence?

Select by class name, select by id name, select by tag name

Select by id name, select by class name, select by tag name

Select by id name, select by tag name, select by class name

Select by tag name, select by class name, select by id name

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following statements are true about styling your web pages with CSS:

I. Styling with CSS is more scalable than using style= on each HTML tag that you want to style

II. You can create styles with CSS that are not possible using style= on an HTML tag

I only

II only

I and II

Neither I nor II

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following code snippets will select all <img> tags on a page and give them a height of 200 pixels?

<img> {

height: 200px;

}

tag="img" {

height: 200px;

}

<img style="height:200px;">

img {

height: 200px;

}

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Suppose you have the following CSS rules:

p {

color: green;

}


.fire {

color: red;

}


#title {

color: blue;

}

What font color will the following HTML element have after being styled by the given CSS:

<h1 class="fire">Welcome!</h1>

blue

red

green

black

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Suppose you have the following CSS rules:

p {

color: green;

}


.fire {

color: red;

}


#title {

color: blue;

}

What font color will the following HTML element have after being styled by the given CSS:

<p class="title">My First Paragraph</p>

green

red

blue

black

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Suppose you have the following CSS rules:

p {

color: green;

}


.fire {

color: red;

}


#title {

color: blue;

}

What font color will the following HTML element have after being styled by the given CSS:

<p class="fire" id="title">Hello World!</p>

red

green

blue

black

Discover more resources for Computers