DOM の操作のうち、次のものを使用した
<html> <script> function start() { headder = document.createElement("H1"); text = document.createTextNode("Hello DOM"); headder.appendChild(text); document.body.appendChild(headder); } </script> <body onload="start()"></body> </html>