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.
Just now
1<!DOCTYPE html>2<html>3<head>4<title>Welcome Page</title>5<linkrel="stylesheet"href="style.css">6</head>7<body>8<divclass="welcome-message">9<h1>Welcome!</h1>10<p>Please fill out the form below:</p>11</div>12<form>13<divclass="buttons">14<buttontype="button"class="cancel-button">Cancel</button>15<buttontype="submit"class="send-button">Send</button>16</div>17</form>18<scriptsrc="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.