Html lable 標籤html
<html> <body> <!-- label 關聯光標標籤,點擊文字使得關聯的標籤獲取光標、for="username" 關聯對端id名稱 --> <label for="username">用戶名:</label> <input id="username" type="text" name="user" /> </body> </html>
效果spa
用戶名: code