In the HTML code posted below, how can I make both of the edit text aligned to each other horizontally.
html:
<form action="/action_page.php">
<label for="originLngLabel">origin Longitude:</label>
<input type="text" id="originLngTextId" name="originLngText"><br><br>
<label for="originLatLabel">origin Latitude:</label>
<input type="text" id="originLatTextId" name="originLatText"><br><br>
<input type="submit" value="Meaure Distance">
</form>