<strong>新闻</strong>加粗
<em>这是</em>倾斜
<del>删除</del>中间划线
<ins>下划线</ins>下划线
<span></span>盒子不换行 <div></div>盒子一行只能一个
<p>段落</p>段落标签
<h1></h1>标题标签
</br>换行
<img src="seaCopy1.jpg" alt="图片显示不出来用这个文字替换" title="鼠标放到图像上显示的文字"/> 图像 注意格式
<img src="seaCopy1.jpg" width="20" height="20"/> width图像的宽度,height高度
<a href="hua.html" target="窗口弹出方式"> target="_blank"新窗口 target="_self"本窗口打开
<a href="#k">一键定位到达</a> 定位到达 <h2 id="k">中国空间站</h2>
<!-- 注释 --> 快捷键ctrl+/
空格符
<table></table>表格<tr></tr><th>表头单元格加粗居中</th><td>内容</td>
<thead></thead>表格主体
<tbody></tbody>表格内容
rowspan=“合并单元格的个数” colspan=“合并单元格的个数”
<ul><li>无序列表</li></ul>
<ol><li>有序列表</li></ol>
<dl><dt><dd>自定义列表</dd></dt></dl>
用户名:<input type="text" value="请输入用户名"><br> 表单
性别:男<input type="radio" name="sge" checked="男"> 默认选男(单选)
maxlength="10" 输入的长度
重置:<input type="reset"> 提交<input type="submit">
<input type="button" value="获取验证码"> 普通按钮
籍贯: <select> <option>北京</option> <option>上海</option> <option>南京</option> </select>
默认选择selected="selected"
<textarea></textarea> 多行文本框