Below is my code snippet
<input type="tel" min="1" id="maskBarToMile" name="toMile" class="form-control inp-to quantity-input maskBarToMile" value='<s:if test="%{parameterToMile != null}" ><s:property value="%{parameterToMile}" /></s:if>' />
But it is failing in w3c validation and I am getting an error as below
Attribute min not allowed on element input at this point.
How can I use "min" attribute with "tel" input type so that it passes the w3c validation? P.S : I am new to HTML5. TIA.