zoukankan      html  css  js  c++  java
  • 第二周作业

    <!DOCTYPE html>
    <html>
    <head>
     <meta charset="utf-8">
        <title>有序列表</title>
    </head>
    <body>
     <form action="" method="get" class="form-example">
     <div class="form-example">
     <label for="id">请输您的ID号码:</label><br>
     <input type="text" name="name">
    </div>
    <div class="form-example">
    <label for="password">请输入您的密码:</label><br>
       <input type="password" name="password">
    </div>
    <div class="form-example">
    <label for="email">请输入您的电子邮箱:</label><br>
    <input type="email" name="email">
    </div>
    <div class="form-example">
     <h3>您喜欢运动吗?</h3>
    <label for="radio">是</label>
    <input type="radio" name="radio"><br>
    <label for="radio">否</label>
    <input type="radio" name="radio">
    </div>
    <div class="form-example">
     <label for="select">选择一个您喜欢的球类:</label><br>
     <select> 
      <option value="basketball">basketball</option>
      <option value="ping-pang ball">ping-pang ball</option>
      <option value="other">other</option>
     </select>
    </div>
    <div class="form-example">
     <label for="checobox"><br>我喜欢语文:</label>
     <input type="checkbox" name="checkbox">
     <label for="checobox"><br>我喜欢数学:</label>
     <input type="checkbox" name="checkbox">
     <label for="checobox"><br>我喜欢英语:</label>
     <input type="checkbox" name="checkbox">
    </div>
    <br>
    <input type="submit" name="submit" value="提交">
    </form>
    </body>
    </html><!DOCTYPE html>
    <html>
    <head>
     <meta charset="utf-8">
        <title>有序列表</title>
    </head>
    <body>
     <form action="" method="get" class="form-example">
     <div class="form-example">
     <label for="id">请输您的ID号码:</label><br>
     <input type="text" name="name">
    </div>
    <div class="form-example">
    <label for="password">请输入您的密码:</label><br>
       <input type="password" name="password">
    </div>
    <div class="form-example">
    <label for="email">请输入您的电子邮箱:</label><br>
    <input type="email" name="email">
    </div>
    <div class="form-example">
     <h3>您喜欢运动吗?</h3>
    <label for="radio">是</label>
    <input type="radio" name="radio"><br>
    <label for="radio">否</label>
    <input type="radio" name="radio">
    </div>
    <div class="form-example">
     <label for="select">选择一个您喜欢的球类:</label><br>
     <select> 
      <option value="basketball">basketball</option>
      <option value="ping-pang ball">ping-pang ball</option>
      <option value="other">other</option>
     </select>
    </div>
    <div class="form-example">
     <label for="checobox"><br>我喜欢语文:</label>
     <input type="checkbox" name="checkbox">
     <label for="checobox"><br>我喜欢数学:</label>
     <input type="checkbox" name="checkbox">
     <label for="checobox"><br>我喜欢英语:</label>
     <input type="checkbox" name="checkbox">
    </div>
    <br>
    <input type="submit" name="submit" value="提交">
    </form>
    </body>
    </html>

  • 相关阅读:
    16.5 函数对象
    16.4.7 无序关联容器(C++11)
    16.4.6 关联容器
    16.4.5 容器种类(外1:7种序列容器类型)
    16.4.5 容器种类(下:序列)
    # SpringBoot + Spring AMQP 整合 RabbitMQ
    RabbitMQ 消息模型
    RabbitMQ Docker 单机与集群部署
    RabbitMQ 核心概念入门
    MQ消息中间件 + JMS + AMQP 理论知识
  • 原文地址:https://www.cnblogs.com/thelover527/p/10186896.html
Copyright © 2011-2022 走看看