HTML格式化
文档内链接
<a name="tips">hello</a> <a href="#tips">跳转到hello</a>
列表
<!-- 无序列表 type可设置样式 --> <ul type="square"> <li></li> <li></li> </ul> <!-- 有序列表 start可设置起始数值 --> <ol start="10"> <li></li> <li></li> </ol>
<dl> <dt></dt> <dd></dd> </dl>
内联框架iframe
<iframe src="framea.html" frameborder="0" width="800px" height="800px"> </iframe> iframe可多个嵌套,a链接中加入"_parent","_top"可实现在父容器中打开链接的效果。
实体符号
用 等等 在html中显示 空格,<,>,&,",‘ 等等...
http://www.w3school.com.cn/html/html_entities.asp
XHTML简介
XHTML是更严格更纯净的HTML版本,HTML5去掉了很多限制,当然最好还是书写规范一些。
时间: 2024-10-13 04:58:54