Answers for "input box in html"

4

how to create input box in html

<input type="text" />
Posted by: Guest on July-16-2021
8

input html

<!--This text will not be shown -->
<!--Text --> <input type="text">
<!--Text(the input will turn into dots) --> <input type="password">
<!--button --> <input type="button">
<!--number(only a number can be entered) --> <input type="number">
<!--radio button(small and round button) --> <input type="radio">
Posted by: Guest on April-22-2021

Browse Popular Code Answers by Language