External Paths外部連結(跳頁)
指定完整URL路徑
<a href="https://www.w3schools.com/html/default.asp">HTML tutorial</a>
指定另一頁面:
這裡也可以寫成./html/default.asp。指定在同個目錄下(./為所在目錄),名稱是html的資料夾內的default.asp。
<a href="/html/default.asp">HTML tutorial</a>
在同個資料夾或目錄內可以直接指定
<a href="default.asp">HTML tutorial</a>
另一頁:
HTML File Paths
https://www.w3schools.com/html/html_filepaths.asp
../可以追到上上個資料夾
<img src="../picture.jpg">
以下四種資源皆須用到link
1.Web pages
2.Images
3.Style sheets(寫在外部的style碼)
4.JavaScripts(在外部的javaScripts)
Absolute File Paths:
絕對路徑,完整的URL
<img src="https://www.w3schools.com/images/picture.jpg" alt="Mountain">