25 lines
645 B
HTML
25 lines
645 B
HTML
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<!-- Required meta tags -->
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||
|
|
||
|
<!-- Bootstrap CSS -->
|
||
|
<link rel="stylesheet" href="css/bootstrap.min.css"
|
||
|
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
|
||
|
|
||
|
<title>Hello, world!</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<h1>Hello, world!</h1>
|
||
|
<div class="container">
|
||
|
<canvas id="chart"></canvas>
|
||
|
<canvas id="chart-example"></canvas>
|
||
|
</div>
|
||
|
<script src="js/main.js"></script>
|
||
|
</body>
|
||
|
|
||
|
</html>
|