Skip to content

Instantly share code, notes, and snippets.

@johanbrook
Created October 16, 2010 12:24
Show Gist options
  • Save johanbrook/629733 to your computer and use it in GitHub Desktop.
Save johanbrook/629733 to your computer and use it in GitHub Desktop.
<!-- MODAL BOX -->
<section class="modal">
<a class="close">×</a>
<h2>New mail</h2>
<form action="" id="new-mail" method="POST">
<div class="floats">
<label for="from">From (your e-mail address)</label>
<input id="from" type="email" />
</div>
<span class="arrow">➤</span>
<div class="floats">
<label for"to">To (the recipient's e-mail address)</label>
<input id="to" type="email" />
</div>
<br class="clear" />
<label for="subject">Subject</label>
<input id="subject" type="text" />
<label for="message">Message</label>
<textarea id="message" rows="10"></textarea>
<label>When should the mail be sent?</label>
<div>
<select>
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
<select>
<option>Jan</option>
<option>Feb</option>
<option>Mar</option>
<option>Apr</option>
<option>May</option>
</select>
<select>
<option>2010</option>
<option>2011</option>
<option>2012</option>
<option>2013</option>
<option>2014</option>
</select>
</div>
<input type="submit" value="Save" />
</form>
</section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment