码迷,mamicode.com
首页 > Web开发 > 详细

html5-表单

时间:2016-10-12 22:08:26      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:

 

技术分享

技术分享

例子:

text,number,email 的输入框

       <!-- required:必填项 -->
            <!-- autofocus:获得焦点 -->
            <!-- placeholder="请输入姓名" -->

            <label for="name">
                姓名:<input type="text" name="" id="name" required autofocus placeholder="请输入姓名">
            </label>
            <label class="lab">
                手机号:<input type="tel" name="" pattern="1\d{10}" required placeholder="请输入手机号">
            </label>
            <label>
                email:<input type="email" name="" placeholder="请输入email">
            </label>

 

下拉框自动填充:、

      <label>                
        所属学院:
<input type="text" name="" list="cla" placeholder="软件测试1503班"> <datalist id="cla"> <option value="软件测试1501班"></option> <option value="软件测试1501班"></option> <option value="软件测试1501班"></option> <option value="软件测试1504班"></option> </datalist> </label>

其他:

            <label>
                入学成绩:<input type="number" max="100" step="10" value="80" name="" id="score">
            </label>
            <label>
                基础水平:<meter min="0" max="100" low="60" high="80" id="level" value="80"></meter>
            </label>
            <label>
                入学时间:<input type="date" value="2016-09-01">
            </label>
            <label>
                毕业时间:<input type="date" value="2017-09-01">
            </label>
            <label>
                课程进度:<progress value="30" max="100" min="0"></picture>
            </label>
            <input type="submit" name="" value="提交" id="but">

 html自定义字体:

     body{
            font-family: ‘myface‘, serif;
            font-size: 24px;
        }
        @font-face {
           font-family: ‘myface‘;
           src: url(‘./LANENAR_-webfont.ttf‘); 
        } 

标题:

    <form action="">
        <fieldset>
            <legend>学生档案</legend>
            
        </fieldset>
    </form>

 

html5-表单

标签:

原文地址:http://www.cnblogs.com/gx-143/p/5954325.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!