Last active
March 8, 2017 17:07
-
-
Save estefanionsantos/1cd46ae9d16175c4be3383b57c281cc1 to your computer and use it in GitHub Desktop.
formulario
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="row"> | |
<div class="grid g8 mobile12"> | |
<div class="row"> | |
<div class="grid g6 phone12"> | |
<label for="first-name">First Name:</label> | |
<input id="first-name" type="text" /> | |
</div> | |
<div class="grid g6 phone12"> | |
<label for="last-name">Last Name:</label> | |
<input id="last-name" type="text" /> | |
</div> | |
</div> | |
<div class="row"> | |
<div class="grid g12"> | |
<label for="address">Address:</label> | |
<input id="address" type="text" /> | |
</div> | |
<div class="grid g12"> | |
<label for="email">Email:</label> | |
<input id="email" type="email" /> | |
</div> | |
</div> | |
<div class="grid g12 mobile12"> | |
<button class="btn btn_primary pull_right">ok</button> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment