So I have a Json file of that looks like this
{
"data": [{
"name": "Garrett Winters",
"designation": "Accountant",
"salary": "$170,750",
"joining_date": "2011/07/25",
}, {
"name": "Brielle Williamson",
"designation": "Integration Specialist",
"salary": "$372,000",
"joining_date": "2012/12/02",
}]
}
I want to display this in html with tables for each data. I know how to create tables in html. I need help with merging json with html. Thank you