A simple email validation web application that verifies the validity of an email address using an external API.
email-validator/
│
├── index.html # Main HTML structure of the app
├── css/
│ └── style.css # Styles for the email validator UI
├── js/
│ └── index.js # JavaScript to manage validation functionality
├── images/
│ └── email.svg # Email icon used in the UI
├── README.md # Project documentation
└── LICENSE # License file (MIT License)
style.css: Contains the styling of the web application.
index.js: Handles the core functionality of email validation and result display.
email.svg: Contains an image used for the email icon.
- The main HTML file for the application, which provides the structure of the page and links to the required CSS and JavaScript files.
- Clone or download the repository.
- Open
index.htmlin a browser. - Enter an email address into the input field.
- Click the "Check Email" button.
- The result will be displayed below the button, showing various details about the email validity.
- Validates email addresses in real-time.
- Uses an external API to check the validity of the email.
- Displays detailed information about the email, such as domain, status, and more.
- Responsive design using CSS.
- HTML – For structuring the webpage.
- CSS – For styling the webpage.
- JavaScript (ES6+) – For handling API calls and updating UI.
- Email Validation API – For checking email authenticity.
This application uses the EmailValidation.io API to check the validity of the email. The API provides various details like deliverability, domain, and more.
- API Documentation: EmailValidation.io API Docs
This project is licensed under the MIT License - see the LICENSE file for details.