Last active
September 13, 2019 16:52
-
-
Save YannMjl/f33c68af51a786325e2fb12223704081 to your computer and use it in GitHub Desktop.
html file for reading CSV to JSON demo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
| <title>CSV-Excel 2 JSON Demo</title> | |
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css"> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.7.6/css/mdb.min.css"/> | |
| <script type="text/javascript" src="//code.jquery.com/jquery-3.4.1.min.js"></script> | |
| <script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script> | |
| <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.7.6/js/mdb.min.js"></script> | |
| <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery-csv/1.0.3/jquery.csv.min.js"></script> | |
| </head> | |
| <body> | |
| <div> | |
| <div class="jumbotron" style="text-align: center;"> | |
| <h1 id="headerTitle">CSV-Excel 2 JSON Demo</h1> | |
| </div> | |
| <div class="justify-content-center" style="width: 100vw; padding: 0 2rem"> | |
| <div id="showCSV" class="p-3" style="width:fit-content; padding: 1rem"> | |
| <ul class="list-group" id="showCSV"></ul> | |
| </div> | |
| </div> | |
| </div> | |
| <script type="text/javascript" src="./script.js"></script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment