<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<style>
table {
border: 1px solid black;
}
</style>
<input type="text" id="a">
<input type="text" id="b">
<button onclick="btn()">클릭</button>
<script>
function btn() {
var x = document
.getElementById('a')
.value;
var y = document
.getElementById('b')
.value;
document.write("<table>");
document.write("<tr>");
document.write("<td>");
document.write(x);
document.write("</td>");
document.write("<td>");
document.write(y);
document.write("</td>");
document.write("</tr>");
document.write("</table>");
}
</script>
</body>
</html>