HTML & CSS Recap

HTML & CSS Recap

University

5 Qs

quiz-placeholder

Similar activities

Roblox

Roblox

KG - Professional Development

10 Qs

Dasar Desain Grafis

Dasar Desain Grafis

University

10 Qs

Get to Know Purple

Get to Know Purple

University

4 Qs

Principle and Elements of Interior Design

Principle and Elements of Interior Design

University

10 Qs

BMC

BMC

University - Professional Development

10 Qs

Tipografi Desain 1

Tipografi Desain 1

University

10 Qs

Tynker Tynker

Tynker Tynker

3rd Grade - Professional Development

9 Qs

HTML & CSS Recap

HTML & CSS Recap

Assessment

Quiz

Design

University

Hard

Created by

Siriah Steele

Used 1+ times

FREE Resource

5 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

1 min • 1 pt

a tag looks like _h1_

Answer explanation

Think about what you need to place in front and after the "h1" to make it into a tag.

2.

MULTIPLE CHOICE QUESTION

1 min • 2 pts

If you were to select class in your CSS you need to place ____ in front.

#

.

;

:

Answer explanation

When calling an element you use the element name:

h1 {

color: #222;

}

if you're selecting a class you need. . .

3.

FILL IN THE BLANK QUESTION

1 min • 1 pt

write the code for changing your element display from block to flex?

Answer explanation

Remember,

you need to set your display in your CSS

element {

_______:____;

}

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is missing in this code?

element {

color: red

}

;

" "

.

?

Answer explanation

5.

MULTIPLE CHOICE QUESTION

30 sec • 2 pts

What does " display: block; " do to your element?

other elements will sit right next to the element!

Creates a block with background-colour, width and height

it stretches across the width of the webpage

allows you to change the margin options

Answer explanation

Although it isn't visible (until you set a border with colour) each element will automatically be set to a certain display: ____;

Some elements, by default have their display set to block.