This post will help you to send emails to the website admin, While someone fills out the contact/feedback or message form on the website. The whole task will be achieved using only HTML, No server side or any other backend code is required.
This kind of email service is provided by https://formsubmit.co/. Just paste the sample form code on your webpage.
<form action="https://formsubmit.co/your@email.com" method="POST">
<input type="text" name="name" required>
<input type="email" name="email" required>
<button type="submit">Send</button>
</form>