would it be possible to type in pure HTML into a textarea and then add that html to a different html document?
I am thinking this could work? or maybe jquery with ajax might work?
<form action="HTML.html" method="post">
<textarea rows="7" cols="30"></textarea>
<button type="submit">send</button>
</form>
but I'm not sure, also I know I can do it with PHP but I wanna try and see if it would be possible through just javascript.