How to Create a Password Box in HTML
Edited by Chris, Josie
Do you need to make a password box with simple HTML programming? Then you have come to the right place, read this article.
Edit Steps
-
1Type the <form> tag into the HTML file.
Ad -
2Determine what type of information you need to collect from your visitor that would best be left secure and not visible.
-
3Remember to denote the areas of the tags with the use of the <p>, </br> and </form> tags.
-
4Denote a label for the item using the <p> tag.
-
5Type the <input type="password"> tag.
-
6Type the </form> tag to conclude the form.Ad
Edit Video
Edit Tips
- Give the input boxes you ask the visitor to enter, values into names with the 'name="NameHere" attribute.