There is a HTML page code:
<form id="form" action="act.html" method="post" target="_blank"> <input type="text" name="txt" value="777"> <input type="submit" value="Отправить"> </form>
As you can see, the form sends the data to the 'act.html' file. Here is the contents of the 'act.html' file:
<span style="color: red;" name="txt"></span>
How to submit this form without using PHP? If this is possible, how much more difficult is it? If you make it easy, then tell me how.