CSS and HTML Quiz

CSS and HTML Quiz

12th Grade

15 Qs

quiz-placeholder

Similar activities

Introdução ao CSS

Introdução ao CSS

10th - 12th Grade

10 Qs

HTML & CSS Basics

HTML & CSS Basics

9th - 12th Grade

15 Qs

DA Kuis CSS - 26 Januari 2021

DA Kuis CSS - 26 Januari 2021

12th Grade - University

20 Qs

Using CSS Selectors

Using CSS Selectors

9th - 12th Grade

20 Qs

CSS Selectors

CSS Selectors

9th - 12th Grade

20 Qs

Advanced CSS

Advanced CSS

9th - 12th Grade

15 Qs

CSS Advanced

CSS Advanced

9th - 12th Grade

15 Qs

La sintassi CSS

La sintassi CSS

9th Grade - Professional Development

20 Qs

CSS and HTML Quiz

CSS and HTML Quiz

Assessment

Quiz

Computers

12th Grade

Hard

Created by

Anthony DellaRosa

Used 2+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Assume you have two files for your website, and these files exist in the same folder: about.html style.css Which of the following is the proper way to apply the CSS code inside style.css to the about.html file?

Inside style.css: applyTo { href: about.html; }

Inside about.html:

Inside style.css:

Inside about.html:

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

You are trying to apply the same style to several different elements in a block, with line breaks before and after. Which tag should you use?

  1. <span>

  1. <div>

  1. <style>

  1. <src>

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following selects all elements with the class footer that are inside of divs?

div { .footer { ... } }

.footer div { ... }

div > .footer { ... }

div .footer { ... }

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following selects all a tags that are immediate children of div tags?

div > a { ... }

div a { ... }

div < a { ... }

div + a { ... }

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following will turn the first letter of all p elements blue?

p::first-letter { color=blue; }

p:first-letter { color=blue; }

p::first-letter { color: blue; }

p:first-letter { color: blue; }

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following selects images as the mouse hovers over them and sets their size to 350px by 350px?

img:hover { width: 350px; height: 350px; }

img :hover { width: 350px; height: 350px; }

img::hover { width: 350px; height: 350px; }

img > hover { width: 350px; height: 350px; }

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following settings will not make an element invisible?

visibility: hidden

appearance: off

opacity: 0

display: none

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?