So I'm trying to use the Contact form at this Codepen
https://codepen.io/ssbalakumar/pen/uzDIA
I have the form on my page, not sure if the image input field is correct for the form but seems to appear right, so after I fill out the form and hit submit, it reloads the page for some reason, and I don't see any options of where it actually gets sent to.
The page is hosted and currently does not have a php, I don't know how to mark that up, but I assume it;s needed for the sending action?
so two questions, 1 is the image input going to work with this set up? 2nd, how do I set the email that will receive the submitted message
HTML
<div id="contactDiv">
<form id="contact" action="" method="post">
<h3>Quick Contact</h3>
<h4>Contact us today, and get reply with in 24 hours!</h4>
<fieldset>
<input placeholder="Your name" type="text" tabindex="1" required
autofocus>
</fieldset>
<fieldset>
<input placeholder="Your Email Address" type="email" tabindex="2"
required>
</fieldset>
<fieldset>
<input placeholder="Your Phone Number" type="tel" tabindex="3" required>
</fieldset>
<input type="file" tabindex="4" required>
</fieldset>
<fieldset>
<textarea placeholder="Type your Message Here...." tabindex="5" required>
</textarea>
</fieldset>
<fieldset>
<button name="submit" type="submit" id="contact-submit" data-
submit="...Sending">Submit</button>
</fieldset>
</form>