I know how to use a form tag to make a URL from HTML:
<form action="/api" method="get">
Color: <input type="text" name="color" value="blue"><br>
Shape: <input type="text" name="shape" value="cirle"><br>
<input type="submit" value="Submit">
</form>
Gives me /api?color=blue&shape=cirle
Is there any way to do this without using a form? For example, for a row of table with the colums as data? E.g.
<tr action="/api" method="get">
<td type="text" name="color" value="blue">Blue</td>
<td type="text" name="shape" value="cirle">Cirle</td>
</tr>