Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Page Sans Titre</title>
</head>
<body>
<div id="delayed_show">
<script type="text/javascript">
document.getElementById('delayed_show').style.display = 'none';
</script>
<p>Some code that you want to display a little later goes here.</p>
</div>
<script type="text/javascript">
setTimeout(function() {
document.getElementById('delayed_show').style.display = 'block';
}, 3 * 1000);
</script>
</body>
</html>
Bookmarks