-->

HTML page to create password box to input our password.

Let's look at following example.
-------------------------------------------------------------------------------------------------------
<html><!--starting tag of html-->
<head><!--used for meta tag-->
<title><!--used for title of page-->
form concept
</title>
</head>
<body><!--is container-->
form <br>
<form><!--form tag-->
input name:<input type="password" placeholder="type your password" maxlength="10" size="20">
<!-- creates passbox where typed characters are invisible.
because of type password.
placeholder places the text inside the box.
maximum character we can type is 10, the width of box is 20
-->
</form><!--closing of form-->
</body>
</html>

No comments:

Post a Comment