input type = email or number html code example
Example 1: input type email
<label for="email">Enter your email:</label>
<input type="email"
id="email" name="email">
Example 2: html input for email
<div>
Email: <input type="email" name="myEmail">
</div>