<input class="textInput" type="text" name="inputName" value="Input Name"/>
<textarea rows="6" cols="35" name="textarea"></textarea>
<input type="radio" name="radioBtn" value="radioBtn"/> Radio Button
<input type="checkbox" name="checkBox" value="checkBox"/> Check Box
<select><option value="selectOption">Select1</option><option value="selectOption2">Select2</option><option value="selectOption3">Select3</option></select>
<input class="btn" type="submit" value="Submit"/>




/* apply a natural box layout model to all elements */
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}