<input type ="color"> 色块
<input type ="range"> 选取范围
<input type ="email"> 邮件
<input type ="number">数字选择框
<progress value="59">进度条
<meter min="" max ="">网页进度条
<fieldset>><legend> 表单嵌套
<!DOCTYPE html> |
<html> |
<head> |
<meta charset="UTF-8"> |
<title></title> |
</head> |
<body> |
<input type="color" name="" id="" value="" /> |
<input type="range" name="" id="" value="" /> |
<input type="email" name="" id="" value="" /> |
<input type="number" name="" id="" value="2" step="2"/> |
<progress value="20"max="100"></progress> |
<meter value="20" max="100"></meter> |
</body> |
</html> |