As someone new to web design, I recently completed my very first site using a combination of HTML, CSS, and a touch of JavaScript. I managed to create a small contact form within the site, but now I'm wondering if there's a way to make it functional without relying on PHP or bootstrap frameworks. Here is a snippet of my HTML code:
<div class="form">
<p>some text goes here<br>
<br>some text here</p>
<form action="#" method="post">
<label for="form-name">Your name:</label> <input type="text" name="name" id="form-name" /><br>
<label for="form-city">Your email:</label> <input type="text" name="city" id="form-city" /><br>
<label for="form-story">Your message:</label><br />
<textarea name="story" rows="5" cols="60" maxlenght="300" id="story> </textarea><br>
<input type="submit" value="Send" />
</form>
</div>
I realize there may be an error in the "Your email:" section, so any assistance with that would be greatly appreciated. Moreover, I am seeking guidance on what code is necessary to ensure that my contact form can send me an email once my website is live. Can anyone provide insight into achieving this functionality?