##############################################################################
# Python From Scratch
# Autor: Nilo Ney Coutinho Menezes
# Editora Novatec (c) 2010-2024
# Site: https://pythonfromscratch.com
#
# File: listing\chapter 09\09.1365 - No Title.py
# Description: No Title
##############################################################################
with open("page.html", "w", encoding="utf-8") as page:
page.write("""
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<title>Page Title</title>
</head>
<body>
Hello!""")
for line in range(10):
page.write(f"<p>{line}</p>\n")
page.write("""
</body>
</html>""")