HTML & CSS Recap

HTML & CSS Recap

University

5 Qs

quiz-placeholder

Similar activities

FASHION IN DIGITAL TECHNOLOGY

FASHION IN DIGITAL TECHNOLOGY

University

10 Qs

AutoCAD 2D

AutoCAD 2D

University

10 Qs

final

final

University

10 Qs

Computer Graphics File Types

Computer Graphics File Types

11th Grade - University

10 Qs

Mattia Capezzani Website Design

Mattia Capezzani Website Design

University

10 Qs

Week 4/2-5 CSS3 - Font

Week 4/2-5 CSS3 - Font

University

10 Qs

THINKING TECNIQUES in ART and DESIGN

THINKING TECNIQUES in ART and DESIGN

University

10 Qs

CH2 and 3

CH2 and 3

University

10 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.