Created
August 26, 2011 21:54
-
-
Save tango238/1174518 to your computer and use it in GitHub Desktop.
[HTML5]Form
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 lang="ja"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Form API</title> | |
</head> | |
<body> | |
<section> | |
<header> | |
<h1>Form API</h1> | |
</header> | |
<section> | |
<form action="#"> | |
search:<input type="search"/><br/> | |
tel:<input type="tel"/><br/> | |
url:<input type="url"/><br/> | |
email:<input type="email"/><br/> | |
file:<input type="file"/><br/> | |
number:<input type="number"/><br/> | |
range:<input type="range"/><br/> | |
color:<input type="color"/><br/> | |
datetime:<input type="datetime"/><br/> | |
date:<input type="date"/><br/> | |
month:<input type="month"/><br/> | |
week:<input type="week"/><br/> | |
time:<input type="time"/><br/> | |
datetime-local:<input type="datetime-local"/><br/> | |
<input type="submit" value="Send"> | |
</form> | |
</section> | |
<script> | |
</script> | |
</section> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment