Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $PageTitle = "Contact Mike";
- $section = "contact";
- include('inc/header.php');
- ?>
- <div class="section page">
- <div class="wrapper">
- <h1>Contact</h1>
- <p>I'd love to hear from you! complete the form to send me an email.</p>
- <form method="post" action="contact-process.php">
- <table>
- <tr>
- <th>
- <label for="name">Name</label>
- </th>
- <td>
- <input type="text" name="name" id="name">
- </td>
- </tr>
- <tr>
- <th>
- <label for="email">Email</label>
- </th>
- <td>
- <input type="text" name="email" id="email">
- </td>
- </tr>
- <tr>
- <th>
- <label for="name">Message</label>
- </th>
- <td>
- <textarea name="message" id="message"></textarea>
- </td>
- </tr>
- </table>
- <input type="submit" value="Send"
- </form>
- </div>
- </div>
- <?php include('inc/footer.php'); ?>
Advertisement
Add Comment
Please, Sign In to add comment