<!DOCTYPE html>
<html lang="zh-tw">
<head>
<title>表單2</title>
<meta charset="UTF-8">
<style>
</style>
</head>
<body>
<form action="#" method="get">
date:<input type="date" name="date1" /><br>
datetime-local:<input type="datetime-local" name="date2" /><br>
month:<input type="month" name="month" /><br>
time:<input type="time" name="time" /><br>
week:<input type="week" name="week"><br>
color:<input type="color" name="color" /><br>
number:<input type="number" name="num" min="-10" max="12"><br>
range:<input type="range" name="range" min="-10" max="12"/><br>
<!-- ↑設定最大最小值 -->
</form>
</body>
</html>