Created
January 25, 2017 19:14
-
-
Save ayezee33/41be5031235c8d29a5a112ab02e32081 to your computer and use it in GitHub Desktop.
Modest CSS Form
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
<form> | |
<div class="row"> | |
<div class="six columns"> | |
<label for="exampleEmailInput">Your email</label> | |
<input class="u-full-width" type="email" placeholder="[email protected]" id="exampleEmailInput"> | |
</div> | |
<div class="six columns"> | |
<label for="exampleRecipientInput">Reason for contacting</label> | |
<select class="u-full-width" id="exampleRecipientInput"> | |
<option value="Option 1">Questions</option> | |
<option value="Option 2">Admiration</option> | |
<option value="Option 3">Can I get your number?</option> | |
</select> | |
</div> | |
</div> | |
<label for="exampleMessage">Message</label> | |
<textarea class="u-full-width" placeholder="Hi Dave …" id="exampleMessage"></textarea> | |
<label class="example-send-yourself-copy"> | |
<input type="checkbox"> | |
<span class="label-body">Send a copy to yourself</span> | |
</label> | |
<input class="button-primary" type="submit" value="Submit"> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment