<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>注册邮箱</title>
</head>
<body style="background-color: LightBlue">
<input type="image" src="email.jpg" width="50" height="50" alt="email" />
<form action="" method="get"class="form-example">
<div class="form-examle">
<dfn title="输入不带符号的字母或数字">
<label for="name">name:</label>
<input type="text"name="name"id="name"required>
</dfn>
</div>
<div class="form-exampe">
<dfn title="输入邮箱地址@">
<label for="email">email:</label>
<input type="email"name="email"id="email"required>
</dfn>
</div>
<div class="form-example">
<dfn title="输入6-12个字符">
<label for="password">password:</label>
<input type="password"name="password"id="password"required>
</dfn>
<input type="checkbox" name="vehicle" value="同意" /> 我已填写完成 进入注册<br />
<div class="form-example">
<input type="reset"/>
<input type="submit" value="Subscribe!">
<br/>
</div>
</form>
</body>
</html>