Generation

generate functionThu, 01 Feb 2024

Crear una pagina web

def create_webpage(title, text): return '''<!DOCTYPE html> <html> <head> <title>{title}</title> </head> <body> <h1>{title}</h1> <p>{text}</p> </body> </html>'''.format(title=title, text=text) # Create a new webpage webpage = create_webpage(title, text) # Open

Want to kickstart your project?Use the new AI Studio to create your code