<!-- add the .cf class here -->
<div id="form-wrapper" class="cf">
<form id="contact_form" method="post" action="url/to/your/server/here">
<!-- FIRST float left -->
<div class="float-left c1">
<ul>
<li>
<label for="name" id="name" >Name<span class="required"> *</span></label>
<input type="text" name="name" placeholder="John Doe" autocomplete="off" required>
</li>
<li>
<label for="telephone" id="telephone" >Contact Number<span class="required"> *</span></label>
<input type="tel" name="telephone" placeholder="(01225) 123456" autocomplete="off" required>
</li>
<li>
<label for="email" id="email">Email:</label>
<input type="email" name="email address" placeholder="example@example.com">
</li>
</u>
</div>
<!-- SECOND float left -->
<div class="float-left c2">
<ul>
<li>
<label for="enquiry">Enquiry:</label>
<select id="enquiry" name="enquiry">
<option value="general">General</option>
<option value="sales">Sales</option>
<option value="support">Support</option>
</select>
</li>
<li>
<label for="Message" id="Message" >Message<span class="required"> *</span></label>
<textarea name="message" cols="40" rows="6" required placeholder="Enter your message"></textarea>
</li>
</ul>
</div>
<!-- Clear - notice this is a sibling of the els with floats -->
<div class="form_footer">
<ul>
<li>
<span id="required_field">* Required fields</span>
</li>
<li><button class="submit" type="submit">Submit</button></li>
</ul>
</div>
</form>
</div>
a {
outline: none;
}
html, body {
background:url(images/bg.png);
margin: 0;
padding: 0;
height: 100%;
font-family: Helvetica, Arial, sans-serif;
font-size: 0.915em;
line-height: 14px;
}
#form-wrapper {
width: 550px;
display: block;
background: #f6f4f4;
border: #d2cece solid 1px;
}
#required_field {
float: right;
padding: 0 40px 10px 0;
color: #D45252;
font-size: 11px;
font-weight: bold;
font-family: Lucida Sans, Lucida Grande, Lucida Sans Unicode, sans-serif;
}
.required {
color: #D45252;
font-weight: bold;
}
#contact_form ul li {
list-style: none;
position:relative;
}
input, textarea, select {
background:url(images/bg.png);
font-family: Helvetica, Arial, sans-serif;
display: block;
margin: 10px 10px 15px 0px;
resize: none;
border-radius: 3px;
border-radius: 3px;
}
/* chrome, safari */
::input-placeholder {
color:#CCC;
}
/* mozilla */
input:placeholder, textarea:placeholder {
color:#CCC;
}
/* ie (faux placeholder) */
input.placeholder-text, textarea.placeholder-text {
color:#CCC;
}
.submit {
font-family: Helvetica, Arial, sans-serif;
float: right;
}
.float-left {
float: left;
}
.float-right {
float: right;
}
.form_footer {
clear: both;
}
/*
Nicolas Gallagher's clearfix hack
read more here: http://nicolasgallagher.com/micro-clearfix-hack/
*/
.cf:before,
.cf:after {
content: " "; /* 1 */
display: table; /* 2 */
}
.cf:after {
clear: both;
}
/**
* For IE 6/7 only
* Include this rule to trigger hasLayout and contain floats.
*/
.cf {
*zoom: 1;
}
Output
You can jump to the latest bin by adding /latest
to your URL
Keyboard Shortcuts
Shortcut | Action |
---|---|
ctrl + [num] | Toggle nth panel |
ctrl + 0 | Close focused panel |
ctrl + enter | Re-render output. If console visible: run JS in console |
Ctrl + l | Clear the console |
ctrl + / | Toggle comment on selected lines |
ctrl + ] | Indents selected lines |
ctrl + [ | Unindents selected lines |
tab | Code complete & Emmet expand |
ctrl + shift + L | Beautify code in active panel |
ctrl + s | Save & lock current Bin from further changes |
ctrl + shift + s | Open the share options |
ctrl + y | Archive Bin |
Complete list of JS Bin shortcuts |
JS Bin URLs
URL | Action |
---|---|
/ | Show the full rendered output. This content will update in real time as it's updated from the /edit url. |
/edit | Edit the current bin |
/watch | Follow a Code Casting session |
/embed | Create an embeddable version of the bin |
/latest | Load the very latest bin (/latest goes in place of the revision) |
/[username]/last | View the last edited bin for this user |
/[username]/last/edit | Edit the last edited bin for this user |
/[username]/last/watch | Follow the Code Casting session for the latest bin for this user |
/quiet | Remove analytics and edit button from rendered output |
.js | Load only the JavaScript for a bin |
.css | Load only the CSS for a bin |
Except for username prefixed urls, the url may start with http://jsbin.com/abc and the url fragments can be added to the url to view it differently. |