1.标记符和格式文本
body 内容
<h>标题 为六级字体逐渐变小 h1,h2,h3,h4,h5,h6 p 段落 hgroup 一组标题
<b>为粗体<i>为斜体 sup 为上小标 sub 为下标 br 换行
<blockquote>格式化分段引文 cite = "URL"属性 (自我感觉没什么用)
2.列表和背景
编号列表标记符 <ol> 它代表顺序列边英文(ordered list) 1234
项目符号列表的标记符<ul> 它代表无序的列表(unordered list) ....
每一个数字或项目符号列表中的项目都是由<li>来定义的 它代表列表项目(list item)
可嵌套列表 可更改项目符号或数字符号 list-style-type:type
例如<ul style = "list-style-type: square">
<ol start = "n">n代表起始数字 也可以强制某一个列表的序号为5 <li value="5">
创建自定义列表 完整的列表包括(头和定义文字)是包含在<dl>和<dl>标记符中的(definition list)
每个定义词汇都包含在<dt>(definition term)标记符中,定义的文字放在<dd>(definition description)中
插入特殊字符 这些特殊字符被定义为 实体
<p>Copyright © 2012 </p> 版权符号
<hr>插入水平线 <hr style="background-color:green;height:1px;border:none">
设置背景颜色的应用 <body style="background-color:yellow;color:blue">或#FFFF00或rgb(255,0,0) color:指的是前景色
<body style ="background-image:url(http://pic.58pic.com/58pic/17/76/26/24g58PICmse_1024.jpg)"> 设置背景图片
创建超文本链接和锚点
超文本链接到一个网页 <a href="http://www.baidu.com" target ="_blank">访问百度</a>
target 设置目标窗口 _blank 在新的窗口打开
邮箱<a href="mailto:515738522@qq.com">Contact the Admin</a>
锚点 <a name="maomao">猫 </a> <a href="#maomao">跳转到maomao</a>
不在同一个文件中的跳转 <a href="11.html#maomao">跳转到maomao