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

Input Types

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

<input> က form element တွေထဲမှာ အလုပ်အများဆုံးလုပ်တဲ့ hero ပါ။ type ပေါ်မူတည်ပြီး text, email, password, radio, checkbox, date စသဖြင့်ပြောင်းနိုင်ပါတယ်။

html
<input type="text" placeholder="Your name">
<input type="email" placeholder="you@example.com">
<input type="password" placeholder="Password">
<input type="date">
<input type="checkbox" id="agree">
<label for="agree">I agree to the terms</label>
You should see
Input type အမျိုးမျိုးကို browser ကသက်ဆိုင်ရာ UI နဲ့ပြပါမယ်။
Input Types | Thuta Learning