批改状态:合格
老师批语:

文档声明为 HTML 标识网页是遵循 html5 语法规范
<!DOCTYPE html>
html 网页中根标签,一个页面中有且只有一个根标签,网页中的所有内容都写在根标签的内部
<html lang="en"></html>
网页的头部,head 标签中的内容
<head> </head>
使用 meta 来设置页面的字符集
<meta charset="UTF-8" />
网页的标题
<title>我是标题</title>
网页的主体,网页中所有的可见内容,都写在 body 中
<body></body>

<h1>取一杯天上水</h1><h2>取二杯天上水</h2><h3>取三杯天上水</h3><h4>取四杯天上水</h4><h5>取五杯天上水</h5><h6>取六杯天上水</h6>

<p>取一杯天上水</p><p>取二杯天上水</p><p>窗前明月光<br />疑是地上霜</p>
<a href="https://www.php.cn/">php中文网</a>
<ul><li>item</li><li>item</li><li>item</li><li>item</li></ul>

<img src="nb.png" alt="" title="" width="200px" height="200px" />
<ol><li>item</li><li>item</li><li>item</li><li>item</li></ol>

<dl><dt>诗人</dt><dd>李白</dd></dl><dl><dt>诗人</dt><dd>杜甫</dd></dl><dl><dt>诗人</dt><dd>苏轼</dd><dd>苏洵</dd></dl>

<table border="1" width="500px" height="200px"><tr style="background: cornflowerblue"><th>a</th><th>a</th><th>a</th><th>a</th></tr><tr><td colspan="3">横线水平合并3个a</td><!-- <td>a</td><td>a</td> --><td rowspan="3">向下垂直合并三个a</td></tr><tr><td>a</td><td>a</td><td>a</td><!-- <td>a</td> --></tr><tr><td>a</td><td>a</td><td>a</td><!-- <td>a</td> --></tr></table>
1.文本域text

<form action="url" method="post" name="formName">账号: <input type="text" /></form>
2.密码password
<form action="url" method="post" name="formName">密码: <input type="password" /></form>
3.单选框radio

<form action="url" method="post" name="formName">男<input type="radio" name="sex" value="boy" />女<input type="radio" name="sex" value="gril"/></form>
4.多选框checkbox
<form action="">读书 <input type="checkbox" />写字 <input type="checkbox" />玩耍<input type="checkbox"/></form>
5.提交按钮button
<form action=""><input type="button" name="an" value="按钮" /></form>
6.重置按钮reset
<form action=""><input type="reset" name="ch" value="重置" /></form>

<select name="" id=""><option value="si">四川</option><option value="chong">重庆</option><option value="yun">云南</option><option value="gui" selected>贵州</option></select>

<iframe src="http://www.runoob.com" frameborder="0"></iframe>
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号