test.html 555 Bytes
Newer Older
1
2
3
<!DOCTYPE html>
<html lang="en">
<head>
4
5
6
7
8
9
10
11
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  	<!-- Load plotly.js into the DOM -->
	<script src='https://cdn.plot.ly/plotly-latest.min.js'></script>
	<script src='https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js'></script>
  <script src='js/test.js'></script>
12
13
</head>

14
15
<body>
	<div id='myDiv'><!-- Plotly chart will be drawn inside this DIV --></div>
16
</body>
17
</html>
18