Example of HTML From Text Field with label for - HTML CSS HTML

HTML CSS examples for HTML:Form

Description

Example of HTML From Text Field with label for

Demo Code

ResultView the demo in separate window

<!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>

Related Tutorials