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

Attributes

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

Attributes တွေက element တစ်ခုကို အပို information ပေးတဲ့ settings လိုပါပဲ။ Format က name="value" ဖြစ်ပြီး start tag ထဲမှာရေးပါတယ်။

  • href — link သွားမယ့် address
  • src — image/video/audio file source
  • alt — image မပေါ်ရင်ဖော်ပြမယ့်စာ + accessibility အတွက်အရေးကြီး
  • class / id — CSS/JavaScript နဲ့ချိတ်ဖို့ name tag လေးတွေ
html
<a href="https://www.google.com" target="_blank">Go to Google</a>
<img src="image.jpg" alt="A peaceful mountain" width="300">
<p class="highlight" id="intro-text">This paragraph can be styled later.</p>
You should see
Link, image, class/id ပါတဲ့ paragraph ကို browser ကဖတ်နိုင်ပါမယ်။
Attributes | Thuta Learning