Step 1. Link to the API
In your HTML code, link to Timeplot's Javascript API code as follows:
<html>
<head>
...
<script src="http://static.simile.mit.edu/timeplot/api/1.0/timeplot-api.js"
type="text/javascript"></script>
...
</head>
<body>
...
</body>
</html> Step 2. Create a DIV Element
Create a div element in your HTML code, e.g.
<div id="my-timeplot" style="height: 150px;"></div>
You should give it an ID as well as fix its height.