Create welcome form
Write code (HTML, CSS and JS) for a simple welcome page and form with 3 input fields and a dropdown with 2 buttons, cancel and send, then run test with my Codepen project.
1<!DOCTYPE html>
2<html>
3 <head>
4 <title>Welcome Page</title>
5 <link rel="stylesheet" href="style.css">
6 </head>
7 <body>
8 <div class="welcome-message">
9 <h1>Welcome!</h1>
10 <p>Please fill out the form below:</p>
11 </div>
12 <form>
13 <div class="buttons">
14 <button type="button" class="cancel-button">Cancel</button>
15 <button type="submit" class="send-button">Send</button>
16 </div>
17 </form>
18 <script src="script.js"></script>
19 </body>
20</html>
Note: This is just an example of a simple HTML form. In a real-world scenario, you would also want to include proper validation and handling of the form data on the server side.
I have created a project in your Codepen account