Help

Demystifying Designing Web Sites for Accessibility

Text and Images from Slide

Embedded, Head and Linked Style

Sometimes called inline style

View all slides | Contents of this slide

Lecture Notes

Inline, Head and Linked Style

INLINE

<body>

<p style="background: blue; color: white;">A new background and font color with inline CSS</p>

HEAD sometimes called inline style

<head>

<style type="text/css">

h1 {

font-family: Arial, Helvetica, sans-serif;

font-size:1.2em;

color: #000000;

text-align:center;

}

</style>

</head>

LINKED

<head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>EASI: Equal Access to Software and Information</title> <link rel="stylesheet" href="../../styles/style1.css" type="text/css" media="screen">