Add a Placeholder
Text box မွာ data မထည့္သြင္းထားရင္ စာ တစ္ခုခု ေဖာ္ျပထားေစခ်င္တယ္ဆုိရင္ placeholder attribute ကို အသံုးျပဳႏိုင္ပါတယ္။
<!DOCTYPE html>
<html>
<head>
<title>Simple Form</title>
</head>
<body>
<form method="post" action="./post.php">
Website :
<input type="url" name="website" size="25" maxlength=255 placeholder="http://www.yoursite.com">
<input type="submit">
</form>
</html>
code ထဲမွာ placeholder ကို http://www.yoursite.com ဆုိျပီး ထည့္ထားပါတယ္။ စာရိုက္လိုက္တဲ့ အခါမွာ အဲဒီ placeholder မွာ ထည့္ထားတဲ့ စာသားေပ်ာက္သြားတာကို ေတြ႕ရပါလိမ့္မယ္။
Figure 8-28