当前位置: 首页 > article >正文

HTML作业

作业

复现下面的图片

复现结果


代码

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title></title>
    </head>
    <body>
        <form action="#"
                method="get"
                enctype="text/plain">
        <Table border="1">
            <header >
                <td  bgcolor="#cccccc"colspan="2" align="center">用户注册</td>
            </header>
            <tr>
                <td bgcolor="#e6e6e6" align="right">用户名</td>
                    <td bgcolor="#e6e6e6">
                        <input type="edit" name="用户名" id="" value="" /> 
                </td>
            <tr>
                <td bgcolor="#e6e6e6"  align="right">密码</td>
                    <td bgcolor="#e6e6e6">

                        <input type="password" name="密码" id="">                        
                </td>
            </tr>
            <tr>
                <td  bgcolor="#e6e6e6" align="right">性别</td><br />
                    <td bgcolor="#e6e6e6">
                            <input type="radio" name="性别" value="man" />男
                            <input type="radio" name="性别" value="men">女
                </td>
            </tr>
            <tr>
                <td  bgcolor="#e6e6e6" align="right">爱好</td>
                <td bgcolor="#e6e6e6">
                <input type="checkbox" name="爱好" value="写作" checked/>写作
                <input type="checkbox" name="爱好" value="听音乐" checked/>听音乐
                <input type="checkbox" name="爱好" value="体育" checked/>体育 
                </td>
            <tr>
                    <td  bgcolor="#e6e6e6" align="right">省份</td><br />
                    <td bgcolor="#e6e6e6">
                        <select name="province" >
                                          <option >陕西</option>
                                          <option >广西</option>
                                          <option >山西</option>
                        </select>
                    </td>
            <tr>
                    <td  bgcolor="#e6e6e6" align="right">自我介绍</td><br />
                        <td bgcolor="#e6e6e6">
                          <textarea name="" id="" cols="30" rows="5"></textarea>
                    </td>
            <tr>
                <td colspan="2" align="center">
                                        <input type="submit" name="" id=""> <input type="reset" /><br />    
                </td>
            </tr>
            </tr>
            </tr>
            </tr>    
            </tr>
            <tr>
            </tr>
            </Table>
        </form>
    </body>
</html>

http://www.kler.cn/news/368542.html

相关文章:

  • DICOM 基础知识:深入理解DICOM数据结构与标签说明
  • 栈和队列(上)-栈
  • Go 语言基础教程:7.Switch 语句
  • 计算机网络:网络层 —— IPv4 地址的应用规划
  • C++——String类讲解
  • Docker:安装 Syslog-ng 的技术指南
  • 了解python的错误与异常
  • Spring 设计模式之适配器模式
  • grafana 8.0 添加钉钉告警
  • Mysql之视图创建
  • 如何从示波器上得到时间常数
  • C#制作学生管理系统
  • 【热门主题】000010 深入 Vue.js 组件开发
  • 关于我的数据库——MySQL——第五篇
  • pandas习题 024:用字典构造 DataFrame
  • k8s的配置和存储(ConfigMap、Secret、Hostpath、EmptyDir以及NFS的服务使用)
  • 一种小型固定翼无人机弹射着陆系统的设计
  • 一步一步从微信小程序获取asp.net Core API的数据
  • 鸿蒙模块化
  • 网页上的视频怎么下载下来?三种方法
  • Python中的文本分析:统计文本文件中每个单词的出现频率
  • Elasticsearch 实战:搜索与分析的利器
  • Vmware虚拟机引起的windowswifi功能消失异常
  • Centos7.9安装MySQL(二进制)
  • 端到端测试?何必Postman,试试Automan
  • netty之ServerBootstrap和Bootstrap