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>