ну если в конец: 
<!DOCTYPE html>
<html>
    <head>
        <script type="text/javascript">
            window.onload = function() {
                var addedElement = document.createElement('p');
                addedElement.appendChild(document.createTextNode('Hello, world!'));
 
                document.body.appendChild(addedElement);
            }
        </script>
    </head>
    <body>Что-то есть!
    </body>
</html>
	 |