Skip to content

Instantly share code, notes, and snippets.

@tango238
Created August 26, 2011 21:54
Show Gist options
  • Save tango238/1174518 to your computer and use it in GitHub Desktop.
Save tango238/1174518 to your computer and use it in GitHub Desktop.
[HTML5]Form
<!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