Online Html Editor | Online Html Compiler

<!DOCTYPE html> <html> <head> <title>Email Input Example</title> </head> <body> <h2>Email Input Field</h2> <form action="/submit_email" method="post"> <label for="email">Email:</label> <input type="email" id="email" name="email" required> <br><br> <input type="submit" value="Submit"> </form> </body> </html>