前言
在第一單元中,咱們瞭解了 "ML":Markup Language,它的做用是: tell the strure of content;在這一單元,進一步認識 HT,它的做用是:link to other pageshtml
HT 的相關知識
以<a href="elixir.html'>elixirs</a>
爲例web
<a>
的做用是告訴 Web Browser 去 create a hyperlink to another web page,同時讓<a>
中的 **content(職責是充當LABEL) **變成clickable 的。
- href 的意思是"hypertext reference",這是一個 old Internet family name,"hypertext reference"的另一個名字是 resource on the Internet or your computer,是告訴 Browser 用於 use the attribute to get to the link points 的。
- 」elixir.html"是指同文件裏面的relative paths,**(職責是充當 **Destination ),若是destination是上一級的,就用../(這是告訴 Browser 去找 parent folder),若是是下一級,就用「images/"的形式。
Understanding attributes
href = "top10.html"code
- 首先是 attibute name, 這裏是href
- 而後是equal sign, 也就是 」=「
- 接下來是attribute value
- 別忘了用double quote 用來around attribute value
注意事項:
對於特定的 tag, 有特定的 attributehtm
作錯的題:


正確答案:../../images/artists/chrif.gif
解析:首先,coldplay.html 在 rock 這一級的directory 中,而後它應該go UP 2級,而後再從中找到images,繼續找artists,而後找到chrif.gifblog