How to fetch JSON data into HTML?

 <div class="chart-container">
                    <div class="chart-spendings">
                        <p>$<span class="daily-amount">17.45</span></p>
                    </div>
                    <div class="chart-body">

                    </div>
                    <div class="chart-day">
                        <p class="day-name">mon</p>
                    </div>
                    x7 of same divs
</div>


JSON file is called data.json and has "day" and "amount" data that I want to put into

class="day-name" and class="daily-amount" elements.
Was this page helpful?