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
<input type="text" x-webkit-speech /> |
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
div{ | |
margin: 45px; | |
/** prevent screen flash on child element :hover state transform **/ | |
-webkit-transform: translate3D(0, 0, 0) | |
} | |
img { | |
/** basic styles **/ | |
max-width: 200px; | |
margin: 1px; |
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
<ul> | |
<li data-email="[email protected]">Jim</li> | |
<li data-email="[email protected]">Julie</li> | |
<li data-email="[email protected]">Jay</li> | |
<li data-email="[email protected]">Jennie</li> | |
</ul> |
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
<div class="container" id="main"> | |
<nav> | |
<h1>Navigation</h1> | |
<ul> | |
<li><a href="#lorem">Lorem ipsum dolor sit amet.</a></li> | |
<li><a href="#invenitatis">In venenatis auctor eros sed rhoncus.</a></li> | |
<li><a href="#utinorci">Ut in orci enim.</a></li> | |
<li><a href="#donecdiam">Donec diam dolor.</a></li> | |
<li><a href="#donectortor">Donec tortor mi.</a></li> | |
</ul> |
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
<!doctype html> | |
<html> | |
<head> | |
<meta charset=utf-8> | |
<title>horse</title> | |
<link href='http://fonts.googleapis.com/css?family=Spirax' rel='stylesheet' type='text/css'> | |
</head> | |
<body> | |
<h1>Sallie Gardner at a Gallop</h1> | |
</body> |
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> | |
<!-- email input type, required - the form won't submit if empty --> | |
<input type="email" id="youremail" placeholder="[email protected]" required /> | |
<label for="youremail">your email</label> | |
<!-- url input type, optional - form will submit if empty, but if you do enter a value it needs to conform to URL type validation --> | |
<input type="url" id="yourwebsite" placeholder="http://example.com" /> | |
<label for="yourwebsite">your website</label> | |
NewerOlder