Hi Bytes.
i have 3 submit buttons namely click1,click2 and click3 .
if i press the any of one submit button page submitted appropriate page correctly, But the problem is display the all submit buttons in single line but it displays line by line (one line after another button displayed) .
code i used is :
is it possible to display all buttons in sigle line(like click1 cilk2 click3) . help me.
i have 3 submit buttons namely click1,click2 and click3 .
if i press the any of one submit button page submitted appropriate page correctly, But the problem is display the all submit buttons in single line but it displays line by line (one line after another button displayed) .
code i used is :
Code:
<html> <body> <form name="frm1" method="post" action="clk1.html"> <input type="submit" value="click1"> </form> <form name="frm2" method="post" action="clk2.html"> <input type="submit" value="click2"> </form> <form name="frm3" mthod="post" action="clk3.html"> <input type="submit" value="click3"> </form> </body> </html>
is it possible to display all buttons in sigle line(like click1 cilk2 click3) . help me.
Comment