1 / 8
文档名称:

实验三 HTML表格与HTML表单.doc

格式:doc   大小:244KB   页数:8页
下载后只包含 1 个 DOC 格式的文档,没有任何的图纸或源代码,查看文件列表

如果您已付费下载过本站文档,您可以点这里二次下载

分享

预览

实验三 HTML表格与HTML表单.doc

上传人:511709291 2022/1/21 文件大小:244 KB

下载得到文件列表

实验三 HTML表格与HTML表单.doc

文档介绍

文档介绍:word
word
1 / 8
word
淮海工学院计算工程学院
实验报告书
课程名: Web应用开发技术
题 目: HTML表格与HTML表单
班 级:
学 号:
姓 名:
评语:
sex" value="female" checked="checked">Female</td>
</tr>
<tr>
<td>Eye color</td>
<td><select name="eyecolor">
<option selected="selected">green</option>
<option>blue</option>
<option>yellow</option></td>
</tr>
<tr>
<td>Check all that apply</td>
<td><input type="checkbox" name="check" value="1">Over 5 feet tall</br>
<input type="checkbox" name="check" value="3">Over 200 pounds</td>
</tr>
<tr>
<td colspan="2">Describe your athletic ability:</br>
<textarea name="ability" rows="7" cols="47"></textarea>
</td>
</tr>
word
word
3 / 8
word
<tr>
<td colspan="2" align="center"><input type="submit" value="Enter my information"></td>
</tr>
</table>
</form>
</body>
</html>
四 实验结果
五 思考题
,如如下图所示:
word
word
4 / 8
word
<html>
<head>
<meta -equiv="Content-Type" content="text/html; charset=utf-8" />
<title>课程表</title>
</head>
<body>
<table border="1">
<tr height="10" align="center">
<th width="175"></th>
<th width="175">周一</th>
<th width="175">周二</th>
<th width="175">周三</th>
<th width="175">周四</th>
<th width="175">周五</th>
<th width="175">周六</th>
<th width="175">周日</th>
word
word
5 / 8