Created
September 26, 2012 12:50
-
-
Save dcardosods/3787817 to your computer and use it in GitHub Desktop.
Testing features of post http://www.aaronlumsden.com/articles/7-html5-features-that-you-may-not-know-about/ - JS.BIN: http://jsbin.com/ukilax/2/edit
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> | |
<head> | |
<meta charset=utf-8 /> | |
<title>JS Bin</title> | |
<link rel="prefetch" href="http://www.aaronlumsden.com/page2"> | |
</head> | |
<body> | |
<div>Testando o post: <a href="http://www.aaronlumsden.com/articles/7-html5-features-that-you-may-not-know-about/">7 HTML5 Features That You May Not Know About</a></div> | |
<a href="my.pdf" download="MyPDFReport">Download PDF</a> | |
<form action="form.php" method="get"> | |
<input autofocus="autofocus" /> | |
<input type="hidden" hidden="hidden"/> | |
<input type="text" spellcheck="true|false"> | |
<input list="mylist" name="mylist" > | |
<datalist id="mylist"> | |
<option value="CSS"> | |
<option value="HTML"> | |
<option value="PHP"> | |
<option value="Jquery"> | |
<option value="Wordpress"> | |
</datalist> | |
<output name="output"></output> | |
<input type="submit" /> | |
</form> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment