Web Foundations/CSS Formatting
This lesson introduces CSS formatting.
Objectives and Skills
editObjectives and skills for this lesson include:[1][2]
- Identify and use design and color principles for Web pages.
- Define and apply essential aspects of the Cascading Style Sheets (CSS) standard, including CSS versions 1, 2 and 3.
- Design Web pages to industry standards.
- Identify essential Web site navigation issues, and ensure page/site accessibility.
Readings
editMultimedia
editExamples
editInline
edit<h1 style="color: blue;">Heading</h1>
Internal
edit<head>
<style>
h1 {color: blue;}
</style>
</head>
External
edit<head>
<link rel="stylesheet" href="style.css">
</head>
Color
edit<h1 style="color: #0000ff;">Heading</h1>
Background Color
edit<h1 style="background-color: #0000ff; color: #ffffff;">Heading</h1>
Font Family
edit<h1 style="font-family: 'Lucida Console', monospace;">Heading</h1>
Font Size
edit<h1 style="font-size: 120%;">Heading</h1>
Font Style
edit<h1 style="font-style: italic;">Heading</h1>
Activities
editKey Terms
edit- dithering
- hexadecimal
- rule
- sans-serif
- selector
- serif
See Also
editReferences
edit