gosha gosha

Generation

generate functionSun, 12 Feb 2023

Html

const Html = (name, heigth, width, backgroundColor) => { const html = `<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>${name}</title> </head> <body style="height:${heigth}px; width:${width}px; background-color:${backgroundColor};"> </body> </html>`; return html; }; console.log(Html("abc", 100, 100, "red"));

Javascript
Generate More

Questions about programming?Chat with your personal AI assistant