forked from pubdata/usnationaldebtchart
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
42 lines (42 loc) · 2.09 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="robots" content="index,follow">
<meta name="keywords" content="united states, unitedStates, debt, national debt, nationaldebt, public debt, publicdebt, chart">
<meta name="description" content="united states national public debt">
<title>U.S. National Public Debt Chart</title>
<link href="static/ico/favicon.ico" rel="icon" type="image/x-icon">
<link href="static/css/styles.css" rel="stylesheet" type="text/css">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet" type="text/css">
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<script src="https://code.highcharts.com/stock/8.0.0/highstock.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<script src="static/js/historychart.js"></script>
</head>
<body style="padding: 8px;">
<div class="se-pre-load"></div>
<div class="panel panel-primary">
<div class="panel-heading">
<div id="currentDebtAmount"></div>
</div>
<div class="panel-body">
<div class="row">
<div class="col-sm-12">
<div id="mainChart"></div>
</div>
</div>
</div>
<div class="panel-footer">
<span style="padding-bottom: 25px;">Data obtained from <a href="https://treasurydirect.gov/NP/debt/current">U.S. Treasury</a></span>
<span style="float: right;">
<a class="github-button" href="https://github.com/sgornick/usnationaldebtchart" aria-label="Fork sgornick/usnationaldebtchart on GitHub">Fork</a>
</span>
</div>
</div>
<script async defer src="https://buttons.github.io/buttons.js"></script>
</body>
</html>