<!DOCTYPE html>


<html lang="en">


<head>


    <meta charset="UTF-8">


    <meta name="viewport" content="width=device-width, initial-scale=1.0">


    <!-- CHANGE THIS -->


    <title>Your Business Name</title>


    <style>


        * {


            box-sizing: border-box;


        }


        body {


            margin: 0;


            padding: 0;


            font-family: Arial, Helvetica, sans-serif;


            background: #f4f4f4;


            color: #333;


        }


        .container {


            width: 100%;


            max-width: 800px;


            margin: 0 auto;


            padding: 40px 20px;


        }


        .logo {


            text-align: center;


            margin-bottom: 30px;


        }


        .logo img {


            max-width: 300px;


            max-height: 180px;


            width: auto;


            height: auto;


        }


        h1 {


            text-align: center;


            font-size: 32px;


            margin: 0 0 15px;


            color: #222;


        }


        .intro {


            text-align: center;


            font-size: 18px;


            line-height: 1.6;


            margin-bottom: 35px;


            color: #555;


        }


        .contact-form {


            background: #fff;


            padding: 35px;


            border-radius: 8px;


            box-shadow: 0 2px 12px rgba(0,0,0,0.08);


        }


        .form-group {


            margin-bottom: 20px;


        }


        label {


            display: block;


            font-weight: bold;


            margin-bottom: 8px;


        }


        input,


        textarea {


            width: 100%;


            padding: 13px;


            border: 1px solid #ccc;


            border-radius: 5px;


            font-size: 16px;


            font-family: Arial, Helvetica, sans-serif;


        }


        input:focus,


        textarea:focus {


            outline: none;


            border-color: #555;


        }


        textarea {


            min-height: 160px;


            resize: vertical;


        }


        button {


            width: 100%;


            padding: 15px;


            border: none;


            border-radius: 5px;


            background: #222;


            color: #fff;


            font-size: 17px;


            font-weight: bold;


            cursor: pointer;


        }


        button:hover {


            background: #444;


        }


        /*


         * HONEYPOT SPAM PROTECTION


         *


         * This field is invisible to normal visitors.


         * Most simple spambots will automatically fill it in,


         * allowing contact.php to reject the submission.


         */


        .website-field {


            position: absolute;


            left: -9999px;


            width: 1px;


            height: 1px;


            overflow: hidden;


        }


        @media (max-width: 600px) {


            .container {


                padding: 25px 15px;


            }


            .logo img {


                max-width: 240px;


            }


            h1 {


                font-size: 27px;


            }


            .intro {


                font-size: 16px;


            }


            .contact-form {


                padding: 22px;


            }


        }


    </style>


</head>


<body>


<div class="container">


    <!-- =========================


         LOGO


         


         Put your logo in the same


         folder as index.html.


         


         Change logo.png to your


         actual filename.


         ========================= -->


    <div class="logo">


        <img src="logo.png" alt="Your Business Logo">


    </div>


    <!-- =========================


         HEADER


         ========================= -->


    <h1>Your Header Goes Here</h1>


    <!-- =========================


         INTRO TEXT


         ========================= -->


    <div class="intro">


        Have a question or interested in learning more?


        Fill out the form below and we'll get back to you.


    </div>


    <!-- =========================


         CONTACT FORM


         ========================= -->


    <div class="contact-form">


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


            <!-- HONEYPOT SPAM TRAP -->


            <!-- DO NOT REMOVE THIS FIELD -->


            <div class="website-field" aria-hidden="true">


                <label for="website">Website</label>


                <input


                    type="text"


                    id="website"


                    name="website"


                    tabindex="-1"


                    autocomplete="off">


            </div>


            <div class="form-group">


                <label for="name">Name *</label>


                <input


                    type="text"


                    id="name"


                    name="name"


                    placeholder="Your name"


                    maxlength="100"


                    required>


            </div>


            <div class="form-group">


                <label for="email">Email *</label>


                <input


                    type="email"


                    id="email"


                    name="email"


                    placeholder="Your email address"


                    maxlength="150"


                    required>


            </div>


            <div class="form-group">


                <label for="phone">Phone</label>


                <input


                    type="tel"


                    id="phone"


                    name="phone"


                    placeholder="Your phone number"


                    maxlength="30">


            </div>


            <div class="form-group">


                <label for="message">Message *</label>


                <textarea


                    id="message"


                    name="message"


                    placeholder="How can we help?"


                    maxlength="3000"


                    required></textarea>


            </div>


            <button type="submit">


                Send Message


            </button>


        </form>


    </div>


</div>


</body>


</html>