Files
2015-04-06 11:29:33 -04:00

16 lines
552 B
HTML
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<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>