<html> <head> <title></title> </head> <body> <div id="DivId"> <p>Chelsea</p> <p>Manchester UTD</p> </div> <script> // tạo mới một thẻ p var NewP = document.createElement("p"); // tạo text node var node = document.createTextNode("Arsenal"); // thêm nội dung vào thẻ p NewP.appendChild(node); var element = document.getElementById("DivId"); // thêm thẻ p vào div element.appendChild(NewP); </script> </body> </html>