<html>
<head>
<style type="text/css">
div.layer1 {
position:absolute;
left:75px;
top:75px;
color:red
}
div.layer2 {
position:absolute;
right:75px;
bottom:75px;
font-family: arial;
color:blue;
font-weight:bold
}
</style>
</head>
<body>
<div class="layer1">
<h1>Positioning Layers</h1>
<p>This is the first layer1 paragraph</p>
<p>This is the second layer1 paragraph</p>
</div>
<div class="layer2">
<p>This is the first layer2 paragraph</p>
<p>This is the second layer2 paragraph</p>
</div>
</body>
</html>