Hello everyone. I am doing a Tabuada using HTML and PHP.
The user types a number through the form and displays the number of the number.
I wonder if I can put some attribute in <input type="number>"
so that only positive numbers are displayed in the user selection field. Today my code looks like this:
<!--CAMPO PARA DIGITAR O NÚMERO-->
<label>Número:</label>
<input type="number" name="numero">
Thanks in advance!