D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
nehabandal
Full window
Github gist
Video Ted DataViz
Built with
blockbuilder.org
<!DOCTYPE html> <meta charset="utf-8"> <body> <script src="//d3js.org/d3.v3.min.js"></script> <script> var svg = d3.select("body").append("svg") .attr("width", 960) .attr("height", 500); svg.append("foreignObject") .attr("width", 480) .attr("height", 500) .append("xhtml:body") .style("font", "14px 'Helvetica Neue'") .html("<a href='https://www.ted.com/talks/moshe_safdie_on_building_uniqueness'>Ted Video</a>"); </script>
https://d3js.org/d3.v3.min.js