Just started to learn HTML and encountered such a problem. I want to make a simple html page with <iframe>
and <form>
. In the form: a text box and a submit request button. The idea is to write something in the text field, click "send" and in the <iframe>
see the page with the search results.
While I wrote this:
<body> <iframe name="AAA" width="600" height="300"> </iframe> <form action="www.google.com" method="get" target="AAA"> <input type="text" name="text" size="20" value="что-то"> <input type="submit" value="Искать"> </form> </body>