wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

FINAL QUIZ WEB

Total questions: 70

Worksheet time: 41mins

Name
Class
Date
1.

The language used to describe the presentation (style, layout, colors) of a document written in HTML or XML.

a)

CSS (Cascading Style Sheets)

b)

JavaScript

c)

SQL

d)

Python

2.

The markup language that focuses on the structure and content of a webpage, which CSS styles.

a)

HTML (HyperText Markup Language)

b)

JavaScript

c)

Python

d)

SQL

3.

The fundamental part of a CSS rule-set that targets the HTML element(s) you want to style.

a)

Selector

b)

Property

c)

Value

d)

Declaration

4.

The section of a CSS rule-set, enclosed in curly braces {}, that contains one or more declarations.

a)

Declaration Block

b)

Selector

c)

Property Block

d)

Style Sheet

5.

The element of a CSS declaration that specifies the style attribute to be changed (e.g., color, font-size).

a)

Property

b)

Selector

c)

Value

d)

Rule

6.

The specific setting for a CSS property (e.g., blue, 24px).

a)

Value

b)

Selector

c)

Class

d)

Attribute

7.

The character used to separate a property and its value within a CSS declaration.

(a)  

8.

The character used to separate multiple declarations within a CSS declaration block.

(a)  

9.

The selector type represented by the asterisk symbol (*), which selects all elements on the page.

a)

Universal Selector

b)

Class Selector

c)

ID Selector

d)

Attribute Selector

10.

The selector type used to select all elements with a specific class attribute, preceded by a dot (.).

a)

Class Selector

b)

ID Selector

c)

Element Selector

d)

Attribute Selector

11.

The selector type used to select a single, unique element with a specific ID attribute, preceded by a hash tag (#).

a)

ID Selector

b)

Class Selector

c)

Element Selector

d)

Attribute Selector

12.

The selector type that targets an HTML tag directly, such as p or h1.

a)

Element/Type Selector

b)

Class Selector

c)

ID Selector

d)

Attribute Selector

13.

The implementation type of CSS where styles are placed directly inside the HTML element using the style attribute.

a)

Inline CSS

b)

External CSS

c)

Internal CSS

d)

Embedded CSS

14.

The implementation type of CSS where styles are placed within a