References

Collection of references for web development.

HTML pattern attribute

Description

Specifies the regular expression that the element is checked against.

Values

Value
regex

Example

<form>
	<input type="text" name="email" pattern="[^@\s]+@[^@\s]+" placeholder="Your Email Address">
	<br><br>
	<button>Submit</button>
</form>