CSS and HTML Quiz

CSS and HTML Quiz

12th Grade

15 Qs

quiz-placeholder

Similar activities

CodeHS Advance HTML and CSS

CodeHS Advance HTML and CSS

9th - 12th Grade

15 Qs

HTML/CSS

HTML/CSS

9th - 12th Grade

15 Qs

HTML and CSS

HTML and CSS

9th - 12th Grade

15 Qs

Advanced HTML and CSS

Advanced HTML and CSS

9th - 12th Grade

15 Qs

CodeHS Advanced HTML/CSS 2022 Quiz Review

CodeHS Advanced HTML/CSS 2022 Quiz Review

9th - 12th Grade

15 Qs

About HTML and CSS

About HTML and CSS

9th - 12th Grade

15 Qs

HTML and CSS Tag

HTML and CSS Tag

9th - 12th Grade

15 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?