Example of HTML From Password Field - HTML CSS HTML

HTML CSS examples for HTML:Form

Description

Example of HTML From Password Field

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head> 
  <title>Example of HTML From Password Field</title> 
 </head> <!--  w  w  w  .j  ava 2s  .c o  m-->
 <body> 
  <form> 
   <label for="user-pwd">Password:</label> 
   <input type="password" name="user-password" id="user-pwd"> 
  </form>   
 </body>
</html>

Related Tutorials