<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=utf-8" />
<title>Using jQuery</title>
<script type="text/javascript"
src="lib/jquery-1.5.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
jQuery("h1").css({
background: "red", color: "white"
});
});
</script>
</head>
<body>
<h1>The hen is wisest of all the animal creation.
She never cackles until the egg is laid.</h1>
<h1>Action speaks louder than words
but not nearly as often.</h1>
<div>
<h1>Do not go where the path may lead,
go instead where there is no path
and leave a trail.</h1>
</div>
<h1>No great genius has ever existed
without some touch of madness.</h1>
</body>
</html>