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>
    

    运行图:

相关推荐
gqkmiss8 分钟前
Chrome 浏览器 131 版本开发者工具(DevTools)更新内容
前端·chrome·浏览器·chrome devtools
Summer不秃13 分钟前
Flutter之使用mqtt进行连接和信息传输的使用案例
前端·flutter
旭日猎鹰18 分钟前
Flutter踩坑记录(二)-- GestureDetector+Expanded点击无效果
前端·javascript·flutter
Viktor_Ye24 分钟前
高效集成易快报与金蝶应付单的方案
java·前端·数据库
hummhumm26 分钟前
第 25 章 - Golang 项目结构
java·开发语言·前端·后端·python·elasticsearch·golang
乐闻x1 小时前
Vue.js 性能优化指南:掌握 keep-alive 的使用技巧
前端·vue.js·性能优化
一条晒干的咸魚1 小时前
【Web前端】创建我的第一个 Web 表单
服务器·前端·javascript·json·对象·表单
Amd7941 小时前
Nuxt.js 应用中的 webpack:compiled 事件钩子
前端·webpack·开发·编译·nuxt.js·事件·钩子
生椰拿铁You1 小时前
09 —— Webpack搭建开发环境
前端·webpack·node.js
狸克先生1 小时前
如何用AI写小说(二):Gradio 超简单的网页前端交互
前端·人工智能·chatgpt·交互