<!--<!DOCTYPE html> <html> <head> <title>CSV File to HTML Table Using AJAX jQuery</title> <meta charset="UTF-8"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" /> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> </head> <body> <div class="container"> <div class="table-responsive"> <h1 align="center">CSV File to HTML Table Using AJAX jQuery</h1> <br /> <div align="center"> <button type="button" name="load_data" id="load_data" class="btn btn-info">Load Data</button> </div> <br /> <div id="employee_table"> </div> </div> </div> </body> </html> -->