generate functionFri, 03 Mar 2023

I want a complete contact form, with. html included

function getContact(name, email, phone, comments) { return ` <h1>Contact form</h1> <ul> <li>Name: ${name}</li> <li>Email: ${email}</li> <li>Phone: ${phone}</li> <li> Comments: <br> ${comments} </li> </ul> ` } getContact("Name", "email@email.com", "785-555-5555", "This is a comment")

Javascript
Generate More

Questions about programming?Chat with your personal AI assistant