Last active
December 10, 2015 14:28
-
-
Save tilomitra/4447718 to your computer and use it in GitHub Desktop.
horizontal 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 class="yui3-form-horizontal"> | |
<fieldset> | |
<div class="yui3-control-group"> | |
<label>Username</label> | |
<input type="text" placeholder="Username"> | |
</div> | |
<div class="yui3-control-group"> | |
<label>Password</label> | |
<input type="password" placeholder="Password"> | |
</div> | |
<div class="yui3-control-group"> | |
<label>Email Address</label> | |
<input type="text" placeholder="Email Address"> | |
</div> | |
<div class="yui3-control-group"> | |
<label>Supercalifragilistic Label</label> | |
<input type="text" placeholder="Enter something here..."> | |
</div> | |
<div class="yui3-controls"> | |
<label class="yui3-checkbox"> | |
<input type="checkbox"> Check me out | |
</label> | |
<button type="submit" class="yui3-button">Submit</button> | |
</div> | |
</fieldset> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment