I had a question about buttons.
When I create a button as a form, I have to put the </form> at the end of the code or else the button will not work. How do I make it so that the buttons are side by side and not stacked on top of each other?
If you look at this code here ...
<form action="main.html" method="get">
<input type="submit" value="Our Company">
<form action="concept.html" method="get">
<input type="submit" value="Our Comical Concept">
<form action="cases.html" method="get">
<input type="submit" value="Our Crew">
<form action="crew.html" method="get">
<input type="submit" value="Our Crew">
<form action="contact.html" method="get">
<input type="submit" value="Our Contact">
</form>
... you'll notice that only the last button has the </form>. As I said, doing that will not allow all the buttons to work, but the buttons will be side by side. But if I put </form> behind every button code, the buttons will be stacked on each other (and they will work). How can I make the buttons go side by side and still take me to the page I want them to? The purpose of these buttons are, if you click on them they will take you to a certain webpage. If anyone could help, I'd appreciate it. Thanks!
When I create a button as a form, I have to put the </form> at the end of the code or else the button will not work. How do I make it so that the buttons are side by side and not stacked on top of each other?
If you look at this code here ...
<form action="main.html" method="get">
<input type="submit" value="Our Company">
<form action="concept.html" method="get">
<input type="submit" value="Our Comical Concept">
<form action="cases.html" method="get">
<input type="submit" value="Our Crew">
<form action="crew.html" method="get">
<input type="submit" value="Our Crew">
<form action="contact.html" method="get">
<input type="submit" value="Our Contact">
</form>
... you'll notice that only the last button has the </form>. As I said, doing that will not allow all the buttons to work, but the buttons will be side by side. But if I put </form> behind every button code, the buttons will be stacked on each other (and they will work). How can I make the buttons go side by side and still take me to the page I want them to? The purpose of these buttons are, if you click on them they will take you to a certain webpage. If anyone could help, I'd appreciate it. Thanks!