File path ဆိုတာ image, CSS, JS file တွေဘယ်မှာရှိလဲဆိုတာ browser ကိုပြောတဲ့ address ပါ။
- Absolute path — full URL:
https://example.com/image.jpg - Root-relative path — website root ကနေစ:
/images/photo.jpg - Relative path — current file နေရာကနေစ:
images/photo.jpg,../style.css
html
<img src="https://example.com/photo.jpg" alt="From another website">
<img src="/images/logo.png" alt="Logo from root images folder">
<img src="images/profile.jpg" alt="Profile from current folder">You should see
Path အမျိုးအစားအလိုက် image source ကို browser ကရှာပါမယ်။