Thuta Learning
ရှာဖွေရန်
IntermediateWeb Developmentbeginner

File Paths

စိတ်လျှော့ပါ။ ဒီခန်းကို စာအုပ်လိုမဟုတ်ဘဲ စကားပြောသလိုပဲ၊ နားလည်လွယ်အောင် ရှင်းပါမယ်။

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 ကရှာပါမယ်။
File Paths | Thuta Learning