creame un codigo para crear una pagina web
def create_page(title, content): return '''<!DOCTYPE html> <html> <head> <title>{title}</title> </head> <body> {content} </body> </html>'''.format(title=title, content=content) def create_article(title, content): return '''<article> <header> <h1>{title}</h1> </