PNLdev
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
En
English
فارسی
En
English
فارسی
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
Run
<!DOCTYPE html> <html> <body> <h1>input type="email" attribute example</h1> <h3>It will create a field for the user to enter an email:</h3> <form action="/action_page.php"> <label for="email">write you'r email:</label> <input type="email" id="email" name="email"> <input type="submit"> </form> <h3>Specifies a field in which to enter multiple emails separated by commas only:</h3> <form action="/action_page.php"> <label for="emails">write you'r email's addresses:</label> <input type="email" id="emails" name="emails" multiple> <input type="submit"> </form> </body> </html>