<html>
<head>
<style>
h1
{
position: absolute;
top: 100px;
left: 100px
}
p
{
position: absolute;
top: 200px;
left: 100px
}
</style>
</head>
<body>
<h1>A heading</h1>
<p>
The <b>heading</b> is placed 100px
down from the top of the document,
and 100px to the right from the
left side of the document.
The <b>paragraph</b> is placed 200px
down from the top of the document,
and 100px to the right from the
left side of the document.
</p>
</body>
</html>