There are better methods for implementing the code you posted. But in keeping with your programming style, here is a partial solution. If you are interested in learning a more efficient method to accomplish the same goals I'd be happy to help you through it.
CODE
<html>
<header></header>
<title></title>
<body>
<script type="text/javascript">
document.write("Hey work with me");
var name = prompt("What is your name?", "");
var age = prompt("what is your age?","");
var nationality = prompt("what is your nationality?","");
var street = prompt("what is your street address?","");
var city = prompt("what city are you from?","");
var town = prompt(" what town are you from?","");
var village = prompt("what village are you from?","");
var district = prompt("what district are you from?","");
var phone = prompt("what is your phone number?","");
document.write("<table border=6>");
// Row 1
// For each row we need a opening and closing TR tag
document.write("<tr>");
document.write("<td>");
document.write("Name:");
document.write("</td>");
document.write("<td>");
document.write(name);
document.write("</td>");
document.write("</tr>");
//The BR tag is unnecessary when using a table layout
// Row 2
document.write("<tr>");
document.write("<td>");
document.write("Age:");
document.write("</td>");
document.write("<td>");
document.write(age);
document.write("</td>");
document.write("</tr>");
//Rest of the code . . . . .
</script>
</body>
</html>