Ad

index.html (HTML Form)

 <!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <title>Contact Us</title>

    <link rel="stylesheet" href="style.css">

</head>

<body>

    <div class="contact-form">

        <h2>Contact Us</h2>

        <form action="contact.php" method="POST">


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

            <input type="email" name="email" placeholder="Your Email" required>

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

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

        </form>

    </div>

</body>

</html>


Post a Comment

0 Comments
* Please Don't Spam Here. All the Comments are Reviewed by Admin.