<html>
  <head>
    <script src="https://d3js.org/d3.v4.min.js"></script>
  </head>
  <body>
  <script>
    var d = ["Hello"," There","!"];
    d3.select("body")
      .selectAll("div")
      .data(d)
      .enter()
      .append("div")
      .text(function(d){ return d});
  </script>
  </body>
</html>
// Code goes here

/* Styles go here */