<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>WAI_1_2_1</title>
<style type="text/css">
div.alert {
color: red;
}
div#main {
color: yellow;
}
</style>
</head>
<body>
<!-- these elements should raise errrors -->
<div class="alert">Stuff in red</div>
<div id="main">This is yellow</div>
<div style="color: pink;">pink text</div>
<!-- these elements should be fine -->
<div>This is green</div>
</body>
</html>