Generation

generate a landing page with hero section with a black to grey gradient background. In the hero section add a form aligned to right. In the form add input for email, phone and a submit button.

<!DOCTYPE html> <html> <head> <title>Landing page</title> <style type="text/css"> body { font-family: Arial, sans-serif; } .hero { background: linear-gradient(black,grey); } .form { display: flex; justify-content: flex-end; } .form input[type="email"] { width: 18rem; padding: 0.5rem; margin: 0.5rem; } .form input[type="tel"] { width: 10rem; padding: 0.5rem; margin: 0.5rem; } .form input[type="submit"] { margin-left: 0.5rem; } </style> </head> <body> <section class="hero"> <div class="form"> <form> <input type="email"

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