Learn HTML - Email and phone inputs

Опубликовано: 15 Май 2026
на канале: Konstantyn's coding
413
4

More on email input: https://developer.mozilla.org/en-US/d...
More on phone input: https://developer.mozilla.org/en-US/d...

An input type 'email' is a field on a web page where you can enter your email address. If it's not valid, the website will give you an error message and ask you to try again.

An input of type 'phone' is a field on a web page where you can enter your phone number.

When you are use it with only the basic set of attributes like type, id and name, phone field will not do the validation as email field does. This is because of different phone formats in different countries. If you want to have a validation, you should use pattern attribute.