-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (28 loc) · 1.25 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
<!DOCTYPE html>
<html lang="pt-BR">
<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>Pmweb - Labs</title>
<link rel="stylesheet" type="text/css" href="node_modules/highcharts/css/highcharts.css">
<link rel="stylesheet" type="text/css" href="assets/css/app.css">
<link rel="apple-touch-icon" sizes="180x180" href="assets/img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/favicon.png">
<link rel="icon" type="image/png" sizes="192x192" href="assets/img/android-chrome-192x192.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/img/favicon-16x16.png">
</head>
<body>
<!-- Only for preview -->
<main class="wrap">
<!-- APP -->
<div id="container"></div>
</main>
<!-- Node Dependencies -->
<!-- <script src="node_modules/highcharts/js/highcharts.js"></script> -->
<!-- Using CDN because the NPM version is not working the color customization of the lines. -->
<script src="https://code.highcharts.com/stock/6.0.7/highstock.js"></script>
<!-- Scripts -->
<script src="assets/js/app.js"></script>
</body>
</html>