Password Field Example 2 : password field « Form « HTML / CSS

Home
HTML / CSS
1.CSS
2.CSS Controls
3.Form
4.IE Firefox
5.Layout
6.Marquee Attributes
7.Meta Tags
8.Microsoft Attributes
9.Object
10.Reference
11.Style Basics
12.Tags
13.Templates
14.XML
HTML / CSS » Form » password field 
Password Field Example 2
 
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8"/>
    <title>Password Field Example</title>
  </head>
  <body>
    <form method="get" action="password.html">
      <p>
        <label for="password">Your password:</label>
        <input type="password" id="password" name="password"/>
      </p>
      <input type="submit"/>

    </form>
  </body>
</html>

   
  
Related examples in the same category
1.Password input control
2.password input
3.Password Field Example
4.A password field
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.