SOURCE

console 命令行工具 X clear

                    
>
console
<form>
 请输入你的用户名:<br>
<input type="text" name="username">
<br>
 请输入你的密码:<br>
<input type="password" name="psw">
<input type="submit" value="提交">
<br>
<input type="checkbox">I have money.
<br>
<input type="checkbox">I have no money. 
<br> 
<input type="button" onclick="alert('你已成功戳到我了!')" value="戳我吧!">
<br>
  请输入数值 (between 1 and 5):
  <input type="number" name="quantity" min="1" max="5">
  
   Quantity:
  <input type="number" name="points" min="0" max="100" step="6" value="10">
<br>  
  Enter a date before 2000-01-01:
  <input type="date" name="bday" max="2000-01-01"><br>
  Enter a date after 2016-01-01:
  <input type="date" name="bday" min="2016-01-01"><br>
<br>   
  Select your favorite color:
  <input type="color" name="favcolor">
<br>
  <input type="range" name="points" min="0" max="100">
<br>
Your favorite time (date and time):
  <input type="datetime-local" name="bdaytime">
<br>
E-mail:
  <input type="email" name="email">
  
 <br>
  Search Google:
  <input type="search" name="googlesearch">
  
</form>