I want to record the minimum and maximum price of the shares of different companies daily. I am trying to use this tag
<input type="number" name="number" placeholder="minprice">
<input type="number" name="number" placeholder="maxprice">
But I want in a single input need to enter both min and max prices of the share on the particular date.
What need to be included or changed?
minand/ormaxto your input:<input type="number" name="number" min="1" max="5">