You are on page 1of 1

<html>

<head>

<title>

</title>

</head>

<body>

</body>

<script>

var tab = document.createElement("Table")


var tr = document.createElement ("Tr")

var td1 = document.createElement("Td")


Td1.innerHTML = "First name"

tr.appendChild(td1)

tab.appendChild(tr)

document.body.appendChild(tab)

</script>
</html>

You might also like