Generate a web page that Allows a user to submit a comma-separated coordinate obtain an altitude from the given coordinate Display that altitude in the box next to the coordinate
<!DOCTYPE html> <html> <head> <style> .container{ display: flex; justify-content: space-around; } .container div{ flex: 0 1 20%; } </style> </head> <body> <div class="container"> <div> <p> Coordinates: </p> <input type="text" id="coordinates" value=""> </div> <div> <p> Altitude </p> <input type="text" id="altitude" value=""> </div> <div> <button id="submit">Submit</button> </div> </div> </body> </html>