Hàm document.write() trong JavaScript
http://sinhviencntt.net/hoc-javascript-bai-6-cac-ham-xuat-du-lieu-trong-javascript/
by sinhviencntt
HTML
<!DOCTYPE html>
<html>
<head>
<script>
function printWebInfo() {
document.write("SinhVienCNTT.Net");
}
</script>
</head>
<body>
<h1>Hello JavaScript</h1>
<button onclick="printWebInfo()">Web Info.</button>
</body>
</html>