Font size
WorksheetsFINAL QUIZ WEB
Total questions: 70
Worksheet time: 41mins
The language used to describe the presentation (style, layout, colors) of a document written in HTML or XML.
CSS (Cascading Style Sheets)
JavaScript
SQL
Python
The markup language that focuses on the structure and content of a webpage, which CSS styles.
HTML (HyperText Markup Language)
JavaScript
Python
SQL
The fundamental part of a CSS rule-set that targets the HTML element(s) you want to style.
Selector
Property
Value
Declaration
The section of a CSS rule-set, enclosed in curly braces {}, that contains one or more declarations.
Declaration Block
Selector
Property Block
Style Sheet
The element of a CSS declaration that specifies the style attribute to be changed (e.g., color, font-size).
Property
Selector
Value
Rule
The specific setting for a CSS property (e.g., blue, 24px).
Value
Selector
Class
Attribute
The character used to separate a property and its value within a CSS declaration.
(a)
The character used to separate multiple declarations within a CSS declaration block.
(a)
The selector type represented by the asterisk symbol (*), which selects all elements on the page.
Universal Selector
Class Selector
ID Selector
Attribute Selector
The selector type used to select all elements with a specific class attribute, preceded by a dot (.).
Class Selector
ID Selector
Element Selector
Attribute Selector
The selector type used to select a single, unique element with a specific ID attribute, preceded by a hash tag (#).
ID Selector
Class Selector
Element Selector
Attribute Selector
The selector type that targets an HTML tag directly, such as p or h1.
Element/Type Selector
Class Selector
ID Selector
Attribute Selector
The implementation type of CSS where styles are placed directly inside the HTML element using the style attribute.
Inline CSS
External CSS
Internal CSS
Embedded CSS
The implementation type of CSS where styles are placed within a
