Hi everyone , I am new to html.I need to put a textarea beside another textarea. normally when i put a text area after another one , the 2nd one gets under the first one.But i want them to stay beside another without using frames. so plz help. thnks in advance.
Hello Hope this helps: <form name="form1" method="post" action=""> <label> <textarea name="textarea"></textarea> <textarea name="textarea"></textarea> </label> </form> Code (markup):
Hello Hope this helps: Code: <form name="form1" method="post" action=""> <label> <textarea name="textarea"></textarea> <textarea name="textarea"></textarea> </label> </form> Thanks! It worked.