28 lines
704 B
HTML
28 lines
704 B
HTML
<!DOCTYPE html>
|
|
<html lang="">
|
|
<head>
|
|
<title>lightweight-charts-python</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
<script type="importmap">
|
|
{
|
|
"imports": { "lightweight-charts": "./lightweight-charts.js" }
|
|
}
|
|
</script>
|
|
<meta name="viewport" content ="width=device-width, initial-scale=1">
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
|
|
Cantarell, "Helvetica Neue", sans-serif;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="container"></div>
|
|
<script type="module" src="./bundle.js"></script>
|
|
</body>
|
|
</html>
|
|
|