HTML·第三章课后练习题

  1. 采用表格布局完成"CASIO计算器"外观设计,其中表格的每一个单元格均需要设计带边框
    复制代码
    <!DOCTYPE html>
    <html lang="zh">
    
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>CASIO 计算器</title>
        <style>
            td {
                border: 1px solid #000;
                height: 40px;
                text-align: center;
                font-size: 18px;
                background-color: #fff;
            }
        </style>
    </head>
    
    <body>
       <table width="200" height="30" border="2" align="center">
        <tr>
          <td>CASIO</td>
        </tr>
      </table>
        <table width="200" height="50" border="1" align="center"></table>
        <table width="200" border="1" align="center" bgcolor="gray" cellspaacing="30px">
    		<tr>
                <td>1</td>
                <td>2</td>
                <td>3</td>
                <td>+</td>
            </tr>
            <tr>
                <td>4</td>
                <td>5</td>
                <td>6</td>
                <td>-</td>
            </tr>
            <tr>
                <td>7</td>
                <td>8</td>
                <td>9</td>
                <td>*</td>
            </tr>
            <tr>
                <td>0</td>
                <td>=</td>
                <td>CE</td>
                <td>/</td>
            </tr>
        </table>
    </body>
    		<p align="center">Copyright &copy;2024 MortalTom</p>
    </html>

    运行图:

  2. 编写程序实现"登录界面":
    复制代码
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>登录界面</title>
    </head>
    <body>
    <form >
        <fieldset  style="width:300px;height:230px;margin:0 auto;">
            <legend align="center">登录界面</legend>
            <p align="center">用户名:<input type="text" maxlength="25"></p>
            <p align="center">密&nbsp;&nbsp;&nbsp;&nbsp;码:<input type="password" maxlength="25"></p>
            <p align="center">类型:<input type="radio" name="user">管理员 <input type="radio" name="user">普通用户</p>
            <p align="center"><input type="checkbox">记住密码 <input type="checkbox">自动登录</p>
            <p align="center"><input type="submit">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type="reset"></p>
        </fieldset>
    </form>
    </body>
    		<p align="center">Copyright &copy;2024 MortalTom</p>
    </html>

    运行图:

相关推荐
BillKu4 分钟前
vue3 字符串排序 localeCompare,确保排序为 “B01“, “B10“, “B2“
前端·javascript·vue.js
一鸣AI编程9 分钟前
功能用例接入 TestStar AI UI:一份可执行的接入清单
前端
晴天1612 分钟前
打造自己的 npm 包实战指南
前端·npm·node.js
然我16 分钟前
从 Service 到生命周期:Agent Runtime 的插件内核
前端·javascript·agent
Moriarty12366641 分钟前
【前端技巧】实现卡片页面容器全屏
前端·css
mmsx1 小时前
osmdroid 地图实战 02|在线底图接入:从 URL 模板到生产级瓦片源工厂(谷歌 + 天地图双案例)
前端·前端框架
用户307140958481 小时前
零依赖实现「形切形」:我用 6200 行原生 Canvas 写了个网页设计工具
前端·ai编程·canvas
兄弟加油,别颓废了。1 小时前
bugku题目
开发语言·前端·python
西西小飞龙1 小时前
npm vs pnpm
前端·npm·node.js