Forms

Beautifully designed to spice up your site. Need a way to submit your form for free? Check out Form Spree
Modern
Example
<form action="" method="POST" class="form-modern"> <input type="text" placeholder="Name:" class="field" title="Name" required/> <input type="email" placeholder="Email:" title="Email" class="field" required/> <textarea title="Message" cols="30" rows="10" placeholder="Message:" class="field__message"></textarea> <input type="submit" value="Submit" class="submit-btn" /> </form>
Need to center the form on the page like above? Don't worry we've got you covered. Just add a class to the container.
<div class="flex-container "> <!-- Content in here --> </div>
Simple
Example
<form action="" class="form-simple"> <label for="Name">Name:</label> <input type="text" name="Name" id="" /> <label for="email">E-Mail:</label> <input type="email" name="_replyto" required /> <label for="message">Message:</label> <textarea name="message" id="" cols="50" rows="10"></textarea> <input type="submit" value="Send" class="button" /> </form>
Subscription
Example
<form action="" class="subscribe"> <input type="text" placeholder="Email" class="email" /> <input type="submit" value="Subscribe" class="button" /> </form>