<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>登录注册</title>
</head>
<body>
    
  <h1>注册</h1>
  
    <form>
    <!-- 以下这几项,邮箱、URL
    -->
<p>邮箱:
  <input type="email" name="email"/>
  </p>
<p>URL:
  <input type="URL" name="url"/>
  </p>
  <!--数据验证
         max:最大值
        min:最小值
        step:步长,单次输入值的跨度

    -->
  <p>数据:
  <input type="number" name="num" max="100" min="0" step="2"/>
  </p>
  
  <!--滑块
    setp:每次加5
    -->
  <p>音量:
  <input type="range" name="voice" max="100" min="0" setp="5"/>
  </p>
  
  <!--搜索框-->
  <p>搜索:
    <input type="search" name="search"/>
  </p>
  
  
  
    <!--
    submit:提交按钮
    reset:清空按钮
    -->
    <p>
    <input type="submit"/> 
    <input type="reset"/>
    </p>
    
  </form>
  
</body>
</html>

 

版权声明:本文为hollg原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/huxingchen/p/16378758.html