This file contains 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
<!DOCTYPE html> | |
<html> | |
<body> | |
<form id="myForm"> | |
Add your telephone: <input type="tel" name="phone" autocomplete=”on” /><br /> | |
</form> | |
This file contains 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 name="myForm"> | |
Quantity (between 1 and 5): <input type="number" name="quantity" min="1" max="5" oninput= “updateMessage(this)”/> | |
Enter Your Email: <input type="email" name="myEmail" formnovalidate /> | |
<input type="submit" /> | |
</form> |
This file contains 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 name=”dateSelection”> | |
Enter Departing Date: <input type="date" min="2012-03-12" name="departingDate" /> | |
<input type="submit" /> | |
</form> |
This file contains 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
input[type=number]{border: 2px solid green} | |
input:invalid {border: 2px solid red} |
This file contains 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
<table width="100%" border="1"> | |
<tr> | |
<th>Title</th> | |
<th>Price</th> | |
</tr> | |
<tr id="323"> | |
<td>Google Hacks</td> | |
<td>FREE</td> | |
</tr> |
This file contains 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
@font-face { | |
font-family: 'Radley'; | |
font-style: normal; | |
font-weight: normal; | |
src: local('Radley'), url('../fonts/Radley.woff') format('woff'); | |
} | |
@font-face { | |
font-family: 'Lovers Quarrel'; | |
font-style: normal; | |
font-weight: 400; |
This file contains 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
@font-face { | |
font-family: 'Russo One'; | |
font-style: normal; | |
font-weight: 400; | |
src: local('Russo One'), local('RussoOne-Regular'), url('http://themes.googleusercontent.com/static/fonts/russoone/v1/RO6e96EC9m6OLO0tr7J3zz8E0i7KZn-EPnyo3HZu7kw.woff') format('woff'); | |
} | |
@font-face { | |
font-family: 'Trocchi'; | |
font-style: normal; | |
font-weight: 400; |
This file contains 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
p.test{ | |
width: 45px; | |
padding:5px; | |
border: 1px solid black; | |
text-transform: uppercase; | |
} |
This file contains 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
.testClass { | |
width: 100%; | |
color: #fff; | |
transform: rotate(30deg); | |
-ms-transform: rotate(30deg); /* IE 9 */ | |
-webkit-transform: rotate(30deg); /* all webkit browsers */ | |
-o-transform: rotate(30deg); /* Opera */ | |
-moz-transform: rotate(30deg); /* Firefox */ | |
} |