<html lang="ko">
<head>
<meta charset="UTF-8">
<title>HTML5 Input Types</title>
</head>
<body>
<h1>email 타입을 이용한 email 주소 입력</h1>
<form action="/examples/media/request.php">
여러분의 이메일 주소를 입력해 주세요 :<br><br>
<input type="email" name="email">
<input type="submit" value="전송">
</form>
</body>
</html>