AVAryan Vermainaryanverma.hashnode.dev·Dec 18, 2023 · 2 min readHTML Input Types1.Input Type Password (<input type="password" >) :- Basically, this input types mainly use in Login form , Dashboard etc. Ex. <form action="abcd.php"> <label for="pwd">Password:</label><br> <input type="password" id="pwd" name="pwd"> </form> Output: ...00
AVAryan Vermainaryanverma.hashnode.dev·Sep 23, 2022 · 1 min read"Table" tag using in HTMLGenerally, In Table content there are made up of two main things which are "Table Head " and "Table Body" . *A table is a data structure that organizes information into rows and columns. It can be used to both store and display data in a structured ...00