I would like to know how to store data in a form, it will have a presentation in the course and I would like people who access my page to leave a comment about what they found ... I wondered if this is possible only with JavaScript, the comments could be stored in a Text document ... I do not know how this works. My HTML structure
<html>
<style type="text/css">
body{
background: white;
url("comentario/fundocomentario.jpg") top left repeat-x fixed;
}
</style>
<img src="comentario/deixeseucomentario.png" width=500 height=100>
<font size=5 color="black" face="Broadway">
<font size=4 color="#8B0000" face="Broadway">
<form name="cadastro">
<img src="comentario/comentarionome.png" width=50 height=25>
<input type="text" name="nome" id="nome" maxlength=30 size=50 style="background-color:#98F5FF;color:#8B0000;font-size:15px">
<br>
<img src="comentario/comentarioemail.png" width=50 height=25>
<input type="text" name="email" id="email" maxlength=30 size=49 style="background-color:#98F5FF;color:#8B0000;font-size:15px">
<br>
</font>
<font size=4 color="black" face="Broadway"><br>
<img src="comentario/achou.png" width=350 height=40>
<br>
<textarea id="comentario" name="comentario" cols=62 rows=5 style="background-color:#98F5FF;color:#8B0000;font-size:15px">
</textarea>
<input type="button" value="salvar" src="salvar" onclick="salvar()">
<iframe id="conteudo" style="display: none"></iframe>
</form>
<br>
<img src="comentario/comentariocentro.png" width=400 height=40>
</html>