16 lines
552 B
HTML
16 lines
552 B
HTML
<html>
|
||
<head>
|
||
<title>inline_css example</title>
|
||
<link rel="stylesheet" href="styles/all_styles.css">
|
||
<link rel="stylesheet" href="styles/blue.css" media="print">
|
||
<link rel="stylesheet" href="styles/bold.css" media="not decodable">
|
||
<link rel="stylesheet" href="styles/yellow.css" media=", ,print, screen ">
|
||
<link rel="stylesheet" href="styles/rewrite_css_images.css" media="all">
|
||
</head>
|
||
<body>
|
||
<div class="blue yellow big bold">
|
||
CSS that was linked should be inlined in the source.
|
||
</div>
|
||
</body>
|
||
</html>
|