Skip to content

Instantly share code, notes, and snippets.

View nhudesign's full-sized avatar

Nhu Bergstrom nhudesign

View GitHub Profile
@nhudesign
nhudesign / html file for contact form
Last active March 4, 2016 16:02
Contact form on an HTML website
<form class="form" action="mail.php" method="post">
<!-- Name Field Start -->
<div class="name">
<input type="text" placeholder="YOUR NAME" name="name">
</div>
<!-- Name Field End -->
<!-- Email Start -->
<div class="email">
<input type="email" placeholder="YOUR EMAIL" name="email">
</div>