Exam 5: Web Typography

arrow
  • Select Tags
search iconSearch Question
  • Select Tags

The ____ property lets you specify italic or oblique text.

Free
(Multiple Choice)
4.8/5
(33)
Correct Answer:
Verified

A

List the four principles for creating an effective web site design when considering typefaces.

Free
(Essay)
4.8/5
(34)
Correct Answer:
Verified

Choose fewer fonts and sizes.
Use available fonts.
Design for legibility.
Avoid using text as graphics.

Describe the concept of absolute units and relative units. Specifically describe the em and ex units.

Free
(Essay)
4.9/5
(43)
Correct Answer:
Verified

Absolute Units: CSS lets you use absolute measurement values that specify a fixed value. The measurement values require a number followed by one of the unit abbreviations. By convention, do not include a space between the value and the measurement unit. The numeric value can be a positive value, negative value, or fractional value. For example, the following rule sets margins to 1.25 inches:
p {margin: 1.25in;}
You generally want to avoid using absolute units for web pages because they cannot be scaled to the individual user's display type. Absolute units are appropriate when you know the exact measurements of the destination medium. For example, if you know a document will be printed on 8.5 X 11-inch paper, you can plan your style rules accordingly because you know the physical dimensions of the finished document. For this reason, absolute units are better suited to print destinations than web destinations. Although the point is the standard unit of measurement for type sizes, it is not the best measurement value for the web. Because computer displays vary widely in size, they lend themselves better to relative units of measurement that can adapt to different monitor sizes and screen resolutions.
Relative Units: The relative units are designed to let you build scalable web pages that adapt to different display types and sizes. This practice ensures that your type sizes are properly displayed relative to reach other or to the default font size set for the browser.
Relative units are always relative to the inherited size of their containing element. For example, the following rule sets the font size for the < body > element to 1.5 times (150%) the size of the browser default:
body {font-size: 150%;}
Child elements inherit the percentage values of their parents. For example, a < p > element within this body element inherits the 150% sizing.
The em Unit: The em is a printing measurement, traditionally equal to the horizontal length of the capital letter M in any given font size. In CSS the em is equal to the font size of an element. It can be used for both horizontal and vertical measurement. In addition to stating font sizes, em is useful for padding and margins as well.
The size of the em is equivalent to the font size of the element. For example, if the default paragraph font size is 12-point text, the em equals 12 points. Stating a text size of 2 em creates 24-point text-two times the default size. This is useful because it means that measurements stated in em are always relative to their environment.
The ex Unit: The ex unit is equal to the height of the lowercase letter x in any given font. Ex is a less reliable unit of measurement than em because the size of the letter x changes in height from one font family to another, and the browser cannot always calculate the difference correctly. Most browsers simply set the ex value to one-half the value of the font's em size. Ex is not commonly used to set font sizes.

Which property lets you replace the standard list symbol with an image of your choice?

(Multiple Choice)
4.8/5
(26)

___________ is the white space between lines of text.

(Short Answer)
4.8/5
(34)

The numeric values for font weight express nine levels of weight from ____.

(Multiple Choice)
4.8/5
(36)

Which type of font is a fixed-width font?

(Multiple Choice)
4.8/5
(38)

Don't use the line-height property because it will usually decrease the legibility of your text.

(True/False)
4.9/5
(44)

The ____ is a printing measurement, traditionally equal to the horizontal length of the capital M in any given font size.

(Multiple Choice)
4.9/5
(41)

___________ is the name of a type family such as Times Roman or Futura Condensed.

(Short Answer)
4.7/5
(32)

In CSS, the em unit is equal to the font size of an element.

(True/False)
4.8/5
(42)

Including text as graphics means users cannot search for that text.

(True/False)
4.9/5
(48)

What type of font names should you use to ensure greater portability across browsers and operating systems?

(Multiple Choice)
4.8/5
(37)

The ____________ element is equal to the larger measurement of vw or vh.

(Short Answer)
5.0/5
(40)

Designing for the web restricts your ____ choices to those that your users have installed on their computers.

(Multiple Choice)
4.8/5
(40)

____________ font families are commonly used to mimic typewritten text or for programming code.

(Short Answer)
4.9/5
(38)

The CSS specification recommends a scaling factor of ____ between font sizes for the computer display.

(Multiple Choice)
4.8/5
(35)

The computer screen has a higher resolution than the printed page, making fonts that are legible on paper easier to read on-screen.

(True/False)
4.9/5
(38)

Which property lets you specify the most common font properties in a single statement?

(Multiple Choice)
5.0/5
(36)

The ___________ unit is is equal to the font size of an element but is relative only to the root element of the document.

(Short Answer)
4.8/5
(37)
Showing 1 - 20 of 50
close modal

Filters

  • Essay(0)
  • Multiple Choice(0)
  • Short Answer(0)
  • True False(0)
  • Matching(0)