Edit This Code:
<!DOCTYPE html>
<html>
<body>

<form action="action_page.php">
  Country code: <input type="text" name="country_code" pattern="[A-Za-z]{3}" title="Three letter country code">
  <input type="submit">
</form>

<p><strong>Note:</strong> The pattern attribute of the input tag is not supported in Internet Explorer 9 and earlier versions, or in Safari.</p>

</body>
</html>


Result:
Try it Yourself - © w3schools.com
Privacy Policy