zoukankan      html  css  js  c++  java
  • 表单

    <!--DOCTYPE html-->
    <html lang="cn">
    <head>
    <meta charset="utf-8">
    <title>first web</title>
    <h1>
    <center>注册</center>
    </h1>
    </head>
    <body>
    <fieldset>
    <form action="" method="get" class="form-example">
    <div class="form-example">
    <label for ="name">姓名:</label>
    <input type="text" name="name" id="name" required>
    </div>
    <div class="form-example">
    性别:<input type="radio" name="sex">
    <label>男</label>
    <input type="radio" name="sex" >
    <label>女</label>
    </div>
    <div>
    <label for="tel">电话:</label>
    <input type="tel" name="tel" id="tel" required>
    </div>
    <div>
    <label for="email">邮件:</label>
    <input type="email" placeholder="@qq.com" />
    </div>
    <legend>爱好:</legend>
    <input type="checkbox" name="hobby">
    <label>篮球</label>
    <input type="checkbox" name="hobby">
    <label>足球</label>
    <input type="checkbox" name="hobby">
    <label>游泳</label>
    <input type="checkbox" name="hobby">
    <label>音乐</label>
    <input type="checkbox" name="hobby">
    <label>游戏</label>
    <div>
    <label for="password">密码:</label>
    <input type="password" name="password" id="password" required>
    </div>
    <div class="form-example">
    <input type="submit" value="确认!">
    <input type="reset" name="重置">
    </div>
    </form>
    </fieldset>
    </body>
    </html>

  • 相关阅读:
    2019-9-2-win10-uwp-Markdown
    2018-8-10-控件
    2018-8-10-win10-uwp-dataGrid
    2018-2-13-win10-uwp-hashcash
    2018-2-13-git-cannot-lock-ref
    UCOSIII系统内部任务
    UCOSIII时间片轮转调度
    Keil MDK fromelf生成bin文件
    UCOS内存管理
    uavcan扩展帧格式 zubax
  • 原文地址:https://www.cnblogs.com/taogao3364/p/9652903.html
Copyright © 2011-2022 走看看