Create 2 forms in one browser page using basic HTML [closed]

3 days ago 4
ARTICLE AD BOX

I want to Create 2 forms in one browser page using basic HTML.

( Really basic HTML, no extras, not even CSS )

I have stripped down my code to a small text file ( test.html ) that shows the problem

<html><head><title>larkDemo</title></head><body> <h2>larkDemo</h2> <form action = "/larkDemo/ABeditor" method="get" id = "AB"> <input type = "submit" value = "A, B Editor" form = "AB"> </ form> <p>------------------</p> <form action = "/larkDemo/CDeditor" method="get" id = "CD"> <input type = "submit" value = "C, D Editor" form = "CD"> </ form></body></html>

When I copy and paste this file into an empty chrome tab, it looks OK

enter image description here

Clicking on the A,B editor submit button works fine - it sends a GET to the ABEditor URI.

Clicking on the C, D editor submit button fails completely - nothing happens.

I have googled '2 forms in 1 web page' There are many questions and answers on stackoverflow and elsewhere, but all seem to use something more than just html ( javascript, etc, etc ) I really don't want to have to learn any of that stuff to implement what looks like a very simple requirement.

I am using windows 11 and chrome ( Version 144.0.7559.109 (Official Build) (64-bit) )

My Question: How do I edit my little test file to generate a web page with two functional forms using only basic HTML

Read Entire Article