# Recipe 90: Initial home page creator

def makeHomePage(name, interest):

  file=open("homepage.html","wt")
  file.write("""<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transition//EN" 
"http://wwww.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>"""+name+"""'s Home Page</title>
</head>
<body>
<h1>Welcome to """+name+"""'s Home Page</h1>
<p>Hi!  I am """+name+""".  This is my home page!
I am interested in """+interest+"""</p>
</body>
</html>""")
  file.close()

