1、http://..........->web地址->URL:统一资源定位符,全局地址,指定资源的位置,指定获取资源的协议
2、http: 超文本传输协议
3、绝对路径:从根目录开始追踪文件夹
4.http://ewiruwei.com相当于http://ewiruwei.com/查找默认文件
5URL 链接到其他网站》<a href="http://ewiruwei.com/buzz">caffee</a>
6 链接页面:相对路径和URL
7http://www.mydomin.com:8000/index.html :8000是可选的端口
8链接增加标题 <a href="http://ewiruwei.com/buzz"title="read all about caffeine on the buzz">caffee</a>
作用:鼠标移到这个链接上停留一秒会读出这个标题
9 id属性 <h2 id="chai">chai tea,$1.85</h2> 通过指定id ,建立一个目标,指向“index.html”页面中的chai tea标题
要链接到页面中的一个特定目标<a href="index.html#chai">see chai tea</a>(链接#目标标识符)
链接到index.html中的chai
目标标识符大小写任意
10 元素中属性的先后顺序不重要,可以任何顺序
11 链接出现一个新窗口:target属性告诉浏览器在哪里打开href属性中链接指示的web页面,
若没有target浏览器会在同一窗口打开,若有_blank,就会有新窗口打开
<a target="_blank" herf="http://wickedlysmart.com/buzz"
title="read all about caffeine on the buzz">caffeine buzz</a>