Typography Fundamentals 1 — Questions and Answers
Question 1: What exactly is the definition of typography?
- The text and picture styles
- The appearance and style of printed materials
- The printed matter's style and reference (Correct answer)
- The text's design and appearance
Correct answer: The printed matter's style and reference
Typography is the art and technique of arranging type to make written language legible, readable, and appealing when displayed. It involves the selection of typefaces, point sizes, line lengths, leading (line spacing), and kerning (adjusting space between characters). Therefore, it encompasses the overall style and presentation of printed or displayed text, including its reference to design principles.
Question 2: What is the name of the typeface in a specific size?
- Font (Correct answer)
- Text
- Typography
- Typeface
Correct answer: Font
Historically, a 'font' referred to a complete set of characters (letters, numbers, symbols) of a specific typeface, style, and size (e.g., 12-point Times New Roman Italic). While 'typeface' refers to the design of the letters (e.g., Times New Roman), 'font' specifically denotes a typeface in a particular size and weight/style. In modern digital contexts, the terms are often used interchangeably, but the traditional definition aligns with a typeface at a specific size.
Question 3: Small capitals are defined by what font property?
- Family
- Style
- Property
- Variant (Correct answer)
Correct answer: Variant
Small capitals (or 'small caps') are uppercase letters that are the same height as the lowercase letters of the same font. They are a stylistic variation of a typeface, not a distinct font family or a general style like bold or italic. This specific characteristic falls under the 'variant' property, which defines alternative forms or features within a font.
Question 4: What list-style allows you to position the list marker?
- Type
- Position (Correct answer)
- Property
- Right
Correct answer: Position
In CSS, the `list-style-position` property is used to specify the position of the list-item marker (like a bullet or number). It can be set to `inside` or `outside`. This property determines whether the marker is placed inside the content flow of the list item or outside of it, affecting text wrapping and alignment.
Question 5: What is the font-style property's value? Please choose all that apply.
- Normal (Correct answer)
- Cursive (Correct answer)
- Italic (Correct answer)
- Bold
- Oblique
Correct answer: Normal
The `font-style` property in typography primarily defines whether a font is displayed as normal, italic, or oblique. 'Normal' refers to the upright, default style of the font. 'Italic' is a slanted, often redesigned version of the font. While 'cursive' is technically a generic font family name in CSS, it describes a distinct handwriting-like style that can be considered a 'font-style' in a broader sense, differentiating it from bold (which is a weight).
Question 6: Examine all values that are compatible with the text-align property.
- Left (Correct answer)
- Right (Correct answer)
- Down
- Center (Correct answer)
- Around
Correct answer: Left
The `text-align` property in CSS is used to set the horizontal alignment of text within its containing block. The standard values include 'left' for left-justified text, 'right' for right-justified text, and 'center' for horizontally centered text. 'Justify' is also a common value, but it's not listed as an option here. 'Down' and 'Around' are not valid `text-align` values.
Question 7: Text ornamentation encompasses anything except...
- Underline
- Overline
- Line-through
- Blink
- Bold (Correct answer)
Correct answer: Bold
Text ornamentation refers to decorative lines applied to text, typically controlled by the `text-decoration` CSS property. This includes 'underline' (a line below the text), 'overline' (a line above the text), 'line-through' (a line striking through the text), and historically 'blink' (which causes text to flash). 'Bold', however, is a `font-weight` property, which changes the thickness of the characters themselves, not an added decorative line.
What exactly is the definition of typography?