01 html 01 html 初识 02 html 标签 03 html 表格 04 列表与表单 01 html 01 html 初识 02 html 标签 03 html 表格 04 列表与表单 ...
分类:
其他好文 时间:
2020-05-17 17:45:23
阅读次数:
51
实例 一个简单的 HTML 表格,包含两行两列: <table border="1"> <tr> <th>Month</th> <th>Savings</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> </table> 亲自试一试 浏览器支持 ...
分类:
Web程序 时间:
2020-05-11 19:07:00
阅读次数:
81
实例 带有 thead、tbody 以及 tfoot 元素的 HTML 表格: <table border="1"> <thead> <tr> <th>Month</th> <th>Savings</th> </tr> </thead> <tfoot> <tr> <td>Sum</td> <td>$ ...
分类:
Web程序 时间:
2020-05-11 18:58:29
阅读次数:
76
实例 带有 thead、tbody 以及 tfoot 元素的 HTML 表格: <table border="1"> <thead> <tr> <th>Month</th> <th>Savings</th> </tr> </thead> <tfoot> <tr> <td>Sum</td> <td>$ ...
分类:
Web程序 时间:
2020-05-11 18:54:46
阅读次数:
94
HTML <tfoot> 标签 实例 带有 thead、tbody 以及 tfoot 元素的 HTML 表格: <table border="1"> <thead> <tr> <th>Month</th> <th>Savings</th> </tr> </thead> <tfoot> <tr> <t ...
分类:
Web程序 时间:
2020-05-11 18:43:12
阅读次数:
180
实例 普通的 HTML 表格,包含两行两列: <table border="1"> <tr> <th>Company</th> <th>Address</th> </tr> <tr> <td>Apple, Inc.</td> <td>1 Infinite Loop Cupertino, CA 950 ...
分类:
Web程序 时间:
2020-05-11 18:36:53
阅读次数:
78
实例 一个简单的 HTML 表格,包含两行两列: <table border="1"> <tr> <th>Month</th> <th>Savings</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> </table> 亲自试一试 浏览器支持 ...
分类:
Web程序 时间:
2020-05-11 18:26:45
阅读次数:
90
2020-04-13 每日一例第35天 1.要求: 2.后台代码: <html> <center><head> 邮箱登录</head><body> <table> <form> <tr> <td>邮箱账户: </td> <td><input name="txtname" type="text"></ ...
分类:
Web程序 时间:
2020-04-14 00:41:27
阅读次数:
146
2020-04-12 每日一例第34天 1.表格要求: 2.代码: <pre><html> <head><!--标题语句--> <tittle> 学生成绩</tittle><!--标题--> </head><br /><center> <body><!--内容--> <table border="1 ...
分类:
Web程序 时间:
2020-04-13 00:58:04
阅读次数:
129
2020-04-11 每日一例第32天 1.新建html文件; <table border="1" height="300" width="300"> <tr> <td>朱仁贵</td> <td>刘晓庆</td> <td>李二贵</td> </tr> <tr> <td colspan="2">朱仁贵 ...
分类:
Web程序 时间:
2020-04-11 23:54:05
阅读次数:
170