LATIHAN FORM 3

Password Field in HTML Forms :
Password fields are a type of text field in which the text entered is masked using asterisk or dots for prevention of user identity from another person who is looking onto the screen. Password Field input controls are created using the “input” element with a type attribute having value as “password”.

<!DOCTYPE html>
<html>
<h3>Example of Password Field</h3>    
<body>
    <form>
        <label for="user-password">Password:
        </label><br>
        <input type="password" name="user-pwd" 
                            id="user-password">
    </form>
</body>
</html>




Example of Password Field













HALAMAN

POPULAR POST