Report abuse
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<html>
<head>
<script>
function add_hi() {
var p = document.createElement("P");
p.appendChild(document.createTextNode("Hello, World!"));
document.body.appendChild(p);
}
</script>
</head>
<body onload="add_hi()">
</body>
</html>
|