MULTIPLE CHOICE
- Unlike an external style sheet, a(n) _____ style sheet is applied only to the web page in which it is placed.
- linked
- internal
- embedded
- integrated
- Inline styles are styles applied directly to specific elements using the style attribute
<element style=“property: value”> content </element>
where element is the Hypertext Markup Language (HTML) element and _____ define the styles that are applied directly to that element.- property: value
- element
- element style
- style
- If two style rules have equal specificity, and thus equal importance, then the one that is defined _____ in the style sheet is the one used.
- last
- first
- second
- third
- An additional factor in how an element is rendered is that properties are passed from a parent element to its children in a process known as _____.
- style portioning
- style indexing
- style inheritance
- style link
- Many web browsers include _____ tools to make it easier for designers to locate the source of a style that has been applied to a specific page element.
- designer
- planner
- developer
- creator
- Identify the correct syntax for adding comments in style sheets.
- <!--comment‐->
- /..comment
- //comment//
- /*comment*/
- Which of the following rules defines character encoding in every Cascading Style Sheets (CSS) document?
- @charset=“encoding”
- @charset “encoding”;
- &char=“encoding”;
- &char “encoding”;
- The _____ statement must always come before any other style rules in a style sheet.
- @import
- @embed
- !import
- !embed
- The Cascading Style Sheets (CSS) @rule that imports an external style sheet file located at ur1 is _____.
- @import url(url);
- @import “url”;
- @import prefix url
@import media { url }
- The @import rule has the same impact as adding multiple _____ elements to a Hypertext Markup Language (HTML) file.
- connection
- link
- contact
- integrated
- Adding all the three primary colors—red, green, and blue—at maximum intensity produces the color _____, while adding any two of the three primary colors at maximum intensity produces the trio of complementary colors—yellow, magenta, and cyan.
- white
- blue
- lime
- black
- Yellow has the RGB triplet
- (0, 0, 0)
- (255, 255, 0)
- (0, 255, 255)
- (255, 0, 255)
- Cascading Style Sheets (CSS) allow RGB values to be entered as
- binaries
- hexadecimals
- WYSIWYG values
- RBG values
- In the hexadecimal numbering system, the number 16 is expressed as _____.
- 1F
- F
- 10
- 1
- In the hexadecimal numbering system, the number 21 is expressed as _____.
- 1F
- F
- 15
- F1
- _____ is the tint of a color and is usually represented by a direction on a color wheel.
- Hue
- Saturation
- Lightness
- Darkness
- _____ measures the intensity of the chosen color and ranges from 0% (no color) up to 100% (full color).
- Hue
- Saturation
- Lightness
- Darkness
- Color values using the HSL model are described in Cascading Style Sheets (CSS) 3 using _____.
- #redgreenblue
- rgb(number)
- hsl (hue, saturation, lightness)
- hsl (hue, shadow, lightness, opacity)
- _____ measures the brightness of a color and ranges from 0% (black) up to 100% (white).
- Hue
- Saturation
- Lightness
- Darkness
- Graphic designers consider _____ easier to use because it allows them to set the initial color based on hue and then fine-tune the saturation and lightness values.
- HTML
- CSS
- HSL
- HTM
- _____ defines how solid a color appears.
- Clarity
- Saturation
- Lightness
- Opacity
- How is background color defined in a Cascaded Style Sheets (CSS) file
- @bgcolor “color”;
- @background=”color”;
- background: color;
- background-color: color;
- To set the foreground or text color of an element, use the following property:
- text: color;
- forecolor: color;
- color: color;
- backcolor: color;
- A technique known as _____ places code conforming to older standards before newer properties, providing support for old browsers but still allowing newer standards and techniques to be used by the browsers that support them.
- progressive enhancement
- opacity enhancement
- opacity enhancement
- pseudo-class structuring
- The color scheme that uses two hues close to one another on the color wheel in which one color is the dominant color and the other is a supporting color used only for highlights and nuance is _____.
- triad
- tetrad
- analogic
- monochrome
- To direct a style rule to specific elements, _____ can be used to match only those page elements that correspond to a specified pattern.
- web fonts
- pseudo-classes
- descendant elements
- selector patterns
- A _____ element is an element that contains one or more other elements, which are called child elements.
- family
- sibling
- parent
- descendant
- Each child element may contain children of its own and so forth down the hierarchy, creating a set of _____ elements that are all descended from a common parent.
- descendant
- child
- parent
- sibling
- The style rule
* {color: blue;}
uses the asterisk (*) selector—also known as the _____ selector—to select all elements in a document.- character
- text
- wildcard
- object
- _____ selectors are used to select elements based on elements that are adjacent to them in the document hierarchy.
- Parent
- Child
- Sibling
- Descendant
- Identify a contextual selector that matches any element.
- %
- *
- elem
- elem1, elem2, …
- Identify an attribute selector used to select an element based on its class value.
- class: .intro.elem
- elem.class
- elem#class
- class *elem
- Two attributes, _____, are often key in targeting styles to specific elements.
- id and char
- id and class
- id and type
- id and elem
- Identify an attribute selector that recognizes groups of elements that share a similar characteristic or property.
- id
- pseudo-element
- class
- list-style-position
- Identify an attribute selector that selects all elem elements whose att attribute begins with text.
- elem[att|=”text”]
- elem[att^=”text”]
- elem[att$=”text”]
- elem[att˜=”text”]
- Which of the following attribute selectors selects all elem elements whose att attribute ends with text?
- elem[att*=”text”]
- elem[att^=”text”]
- elem[att|=”text”]
- elem[att$=”text”]
- Identify a generic font group that is a typeface in which each character has the same width.
- sans-serif
- monospace
- fantasy
- cursive
- A typeface, best used in small doses for decorative page elements, that mimics handwriting with highly stylized elements and flourishes is _____.
- serif
- monospace
- fantasy
- cursive
- A typeface in which a small ornamentation appears at the tail end of each character is _____.
- sans-serif
- serif
- monospace
- fantasy
- A general rule for printing is to use _____ fonts for headlines and serif fonts for body text.
- fantasy
- sans-serif
- monospace
- cursive
- Which of the following is an example of web safe font stacks?
- Calibri
- Book Antiqua
- Bell MT
- Verdana
- Identify a rule that should be added to a style sheet to access and load a web font.
- @font-face
- font-style: type;
- aside: {font-family}
- @charset “utf-8”;
- Which of the following browsers supports the web font format “Embedded OpenType”?
- Safari
- Internet Explorer (IE)
- Chrome
- Firefox
- _____ units are specified in one of five standard units of measurement.
- Relative
- Absolute
- Standard
- Uppercase
- _____ units express font size according to the size of other objects within a web page.
- Absolute
- Relative
- Standard
- Output
- A(n) _____ represents a single dot on an output device.
- element
- icon
- link
- pixel
- The _____ unit is the preferred style unit for web page text because it makes it easy to develop pages in which different page elements have consistent relative font sizes under any device.
- in
- ft
- em
- en
- Identify a relative unit in which lengths are expressed as a percentage of the width or height of a browser window.
- Attribute unit
- Viewport unit
- rem unit
- Absolute unit
- Identify a typographic attribute that measures the amount of space between characters.
- Tracking
- Dithering
- Kerning
- Pacing
- _____ measures the amount of space between words.
- Kerning
- Tracking
- Pacing
- Dithering
- The default value for both kerning and tracking is _____ pixels.
- 8
- 0
- 2
- 5
- Extending the first line of text to the left of a text block creates a _____ indent.
- tracking
- kerning
- leading
- hanging
- Which of the following properties is used to control the casing of text within an element?
- font-variant
- text-transform
- text-align
- font-style
- Identify a property used to align text horizontally.
- text-align: alignment;
- align-text: horizontal;
- horizontal-align: alignment;
- align-text: baseline;
- The _____ value of the vertical-align property aligns the bottom of the element with the bottom of the text in a line.
- baseline
- bottom
- text-bottom
- sub
- Which of the following list styles should be applied to the ol element to display an unordered list with markers as shown below:
- Home
- Getting Started
- Scrapbooking Tips
- Supply List
- ul {list-style-type: none;}
- ul {list-style-type: upper-greek;}
- ul {list-style-type: circle;}
- ul {list-style-type: disc;}
- Nested lists can be displayed in a(n) _____ style through the use of contextual selectors.
- embedded
- outline
- hierarchy
- tree
- The style rule
ul {list-style-image: url(redball.png);}
displays items from _____ lists marked with the graphic image in the redball.png file.- ordered
- unordered
- unstructured
- structured
- Identify a padding property used to set the width of the padding space.
- padding: font;
- padding: pixel;
- padding: style;
- padding: size;
- Identify a pseudo-class which is the first descendant of the parent that matches the specified type.
- :first-of-type
- :first-child
- :only-of-type
- :only-child
- A _____ is a classification of an element based on its current status, position, or use in a document.
- pseudo-class
- pseudo-element
- pseudo-text
- pseudo-style
- Another type of pseudo-class is _____ pseudo-class in which the class can change state based on the actions of a user.
- static
- dynamic
- structured
- unstructured
- The _____ pseudo-class represents the exact instant in which a link is activated.
- link
- visited
- active
- open-quote
- Which of the following dynamic pseudo-classes means the link has not yet been visited by a user?
- :link
- :visited
- :active
- :hover
- The _____ pseudo-class is to be used for a situation in which a user has moved the mouse pointer over a hypertext link prior to clicking the link.
- active
- root
- link
- hover
- _____, another type of pseudo selector, is an object that exists only in the rendered page.
- Pseudo-class
- Pseudo-element
- Pseudo-object
- Pseudo-type
- Identify a Cascading Style Sheets (CSS) selector that is used to select pseudo-elements.
- element::pseudo-element
- element:pseudo-element
- element::“pseudo”;
- element:“pseudo-element”
- Identify the format to add new content before an element with Cascading Style Sheets (CSS).
- element:before open-quote;
- element::before {content: open-quote;}
- element:before text;
- element::before {content: text;}
- Identify an element used for quoted material.
- a
- q
- wbr
- content
- Decorative opening and closing quotation marks can be inserted using the _____ property.
- label
- type
- content
- deco
- Alex wants to create styles that apply only to the HTML document in which they are created. Help Alex in selecting an appropriate style to be used for this purpose.
- External style
- Inline style
- Embedded style
- User-defined
- Alex had forgotten to give any style for all of his pages. In this case, identify the style that would be applied to his pages.
- User defined style
- External style
- User agent style
- View render style
- Alex’s product style rules can be imported into a single file by adding the command _____.
- @import url (css.product);
- @import url (product.css);
- @import css (product.css);
- @import (type: css url: product);
- In this case, the Home page contains two _____ elements.
- child
- parent
- sibling
- descendant
- Terry has decided to display the text of all h1 headings found within the page header in green. The style rule applied should be _____.
- header h1 {shade: green;}
- header h1 {green: shade;}
- header h1 {green: color;}
- header h1 {color: green;}
- To apply a style to all elements in a document, Terry should use the _____ selector.
- e
- f
- *
- +
- If Terry decides to select all elements belonging to the main class, he should use the _____ selector.
- .main
- p.main
- #main.intro
- main[href]
- Tim should use what type of font for the body text of his page?
- serif
- monospace
- cursive
- fantasy
- Tim wants to display the subcategories in capital letters but does not want them to appear more important than the main categories, so he small capital letters. Which style should he use?
- text-transform
- font-transform
- font-variant
- text-variant
- Tim wants to align the top of the element with the top of the font of the surrounding content. Which value of the vertical-align property should he use?
- baseline
- super
- top
- text-top
Case 3-1 Alex's woodworking shop is trying to design a web page with Cascading Style Sheets (CSS). Alex would like create the new design based on the latest elements and styles from Hypertext Markup Language (HTML) and CSS. He has created a few sample pages:
home.htm---describes the business and contact
informationProduct.htm---displays a list of product
descriptionsCustom.htm---displays a list of custom products
Case 3-2 Terry is building a web site and wants to have three main links called Home, Product Info, and Contact Us. She will create a hierarchy of page elements and revise the style sheets.
Case 3-3 Tim is creating a web page to display his poker club’s set of rules. He has main categories and subcategories along with about a paragraph or more of explanation for each.