HTML
Creating Contact Links
Create clickable email, phone call, and SMS links using HTML:
<!-- Email link -->
<a href="mailto:name@example.com"> Send Email </a>
<!-- Phone call link -->
<a href="tel:+1234567890"> Call Us </a>
<!-- SMS link -->
<a href="sms:+1234567890"> Send SMS </a>
DEV Community • 21 HTML Tips You Must Know About
Setting Minimum Input Length
By using the minlength attribute, you can set the minimum number of characters entered by the user in an input field.
<input type="text" minlength="3">