I have three forms in my Flask application that I want to display in a single line rather than one after the other. Is there a way to achieve this without using CSS? Here is the HTML snippet:
<form action="/pull_entity_by_manufacturer" method="post">
Pull an entity by manufacturer: <input type="text" name="ev_manu"><input
type="submit"/>
</form>
<form action="/pull_entity_by_year" method="post">
Pull an entity by year: <input type="number" name="ev_yr"><input type="submit"/>
</form>
<form action="/pull_entity_by_range" method="post">
<label for="cars">Range up to:</label>
<select name="ev_rg" id="cars">
<option value="600">600</option>
<option value="500">500</option>
<option value="400">400</option>
<option value="300">300</option>
<option value="200">200</option>
</select>
<input type="submit"/>
</form>