Happy Birthday

html>

<html lang="en">

<head>

  <meta charset="UTF-8">

  <title>Happy Birthday Form</title>

  <style>

    body {

      font-family: Arial, sans-serif;

      background: #fff8dc;

      text-align: center;

      padding: 50px;

    }

    form {

      background: #ffebcd;

      padding: 20px;

      border-radius: 10px;

      display: inline-block;

    }

    input, textarea, button {

      margin: 10px 0;

      padding: 10px;

      width: 100%;

      max-width: 300px;

    }

    button {

      background-color: #ffa07a;

      border: none;

      color: white;

      cursor: pointer;

    }

  </style>

</head>

<body>


  <h1>Happy Birthday!</h1>

  <p>Send your wishes below:</p>


  <form action="#" method="post">

    <input type="text" name="name" placeholder="Your Name" required>

    <textarea name="message" placeholder="Your Birthday Message" rows="4" required></textarea>

    <button type="submit">Send Wish</button>

  </form>


</body>

</html>

Comments