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> <title>Altitude</title> <script type="text/javascript" src="jquery-3.1.1.min.js"></script> <style> label { display: inline-block; width: 100px; text-align: right; margin-right: 5px; } </style> <script> $(document).ready(function(){ $('#btn').click(function(){ var that = $(this); var formdata = $('#altitude-form').serialize(); $.ajax({ type: 'POST', url: 'altitude_handler.php', data: formdata, dataType: 'text', success: function(result) { $('#content').text(result); } }); }); }); </script> </head> <body> <div class="container"> <h1>Altitude</h