HTML5 ប្រើtag នៃ placeholder Attribute
ភាពងាយស្រួលជាងមុន ជាមួយ HTML5 នោះគឺជា ធាតុ (Attribute) របស់ <input type> tag។គំរូកូដខាងក្រោម៖
<html>
<body>
<p>Please fill the name below:
<form>
<input type=”text” name=”fname” placeholder=”First name” />
<input type=”text” name=”lname” placeholder=”Last name” />
<input type=”submit” value=”Submit” />
</form>
</body>
</html>
Post a Comment