xxxxxxxxxx
<html lang="en">
<head>
<meta charset="utf-8">
<title>Strange Cone Snowman</title>
<script type="text/javascript" src="https://d3js.org/d3.v3.js"></script>
</head>
<body>
<svg width="400" height="400">
<circle r="50" cx="150" cy="210" fill="purple" stroke="rgba(0, 255, 0, 0.25)" stroke-width="20"></circle>
<circle r="40" cx="150" cy="150" fill="silver"></circle>
<circle r="30" cx="150" cy="100" fill="teal" opacity="0.8"></circle>
</svg>
<script type="text/javascript">
//Load in contents of CSV file
d3.csv("ctitportfolio.csv", function(data) {
//Now CSV contents have been transformed into
//an array of JSON objects.
//Log 'data' to the console, for verification.
console.log(data);
});
</script>
</body>
</html>
Modified http://d3js.org/d3.v3.js to a secure url
https://d3js.org/d3.v3.js