Generation

generate functionSun, 11 Jun 2023

Crear una pagina web completa

function createWebPage(title, content){ let header = "<!DOCTYPE html>\n<head>\n<title>" + title + "</title>\n</head>\n<body>\n<h1>" + title + "</h1>\n" let footer = "\n</body>\n</html>" return header + content + footer } createWebPage("My personal web page", "This is my personal page.")

Javascript
Generate More

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