(1) 斜体标签 <em></em>
(2)<a href="http://www.baidu.com" target="_blank"> target表示新开一个窗口
(3)<title> 显示在搜索引擎结果页面的标题 html必须部分
(4)<base> 为页面上所有url规定基准url,<img>中的src会受影响,href也会,base只能放在<head>中
(5)<meta http-equiv="refresh" content="3"> 每隔3秒刷新页面,放在head中
(6)没有下划线的连接 <a style="text-decoration:none;">链接</a>
(7) <img src="boat.gif" alt="Big Boat"> <img>为空标签,没有闭合标签,alt表示图片显示不出来的时候的替代字体
(8) 图片作为链接: <a href="http://www.baidu.com"><img src="1.jpg"></a>
(9)跨行跨列表格,<th colspan="2"> <th rowspan="2">
(10)<table border="1" cellpadding="10" cellspacing="10"> 第二个参数表示单元格中内容距离4个边框的距离,第三个表示单元格之间的距离
(11)<ol type="I"> type是有序列表的类型,I为罗马数字,默认数字,还有大小写字母
(12)<div><h1>, <p>, <ul>, <table>为块级元素,2个连续的div表现为竖直排列 ,<b>, <td>, <a>, <img>为内联元素,不会起新行
(13)<iframe src="http://www.baidu.com">框架,可以在一个页面内显示另一个页面
(14)<pre>标签可以显示代码用,空格也能够不同 显示
(15)标签的id不能为数字,否则不起作用
(16)<abbr title='ddd'>ddd</abbr> 缩略语标签,设定title属性的话,鼠标悬停在文本上会显示title的值