console
window.onload=function(){
var oDiv=document.createElement("div");
var oP=document.createElement("p");
var oP1=document.createElement("p");
oDiv.appendChild(oP);
oDiv.appendChild(oP1);
var oText=document.createTextNode("hhhhhhhhhhhhhhhhh");
var oText1=document.createTextNode("ooooooooooooooooo111111");
oP.appendChild(oText);
oP.appendChild(oText1);
document.body.appendChild(oDiv);
var oDiv1=document.createElement("div");
document.body.appendChild(oDiv1);
oDiv1.innerHTML="<P>HHHHHHHHHH</P>\
<P>HHHHHHHHHH11111111111111</P>";
console.log("line22"+oDiv1.innerText);
var oDiv1 = document.createElement("div");
oDiv1.innerHTML="<p>Hi, innerHTML</p><p> the second innerHTML</p><p> the third innerHTML</p>";
document.body.appendChild(oDiv1);
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<style type="text/css">
</style>
<script>
</script>
</head>
<body>
</body>
</html>