HTML CSS examples for HTML:Form
Example of HTML From Text Field with label for
<!DOCTYPE html> <html lang="en"> <head> <title>Example of HTML From Text Field</title> </head> <!--from w ww.j av a 2s. c o m--> <body> <form> <label for="user-name">Username:</label> <input type="text" name="username" id="user-name"> </form> </body> </html>