{
let div = d3.create("div");
let paragraph_div = div.append("div")
.attr("id", "paragraphs");
let text1 = paragraph_div.append("p")
.classed("description", true)
.attr("id", "name")
.text("This is a paragraph.");
let text2 = paragraph_div.append("p")
.classed("description", true)
.attr("id", "to_be_removed")
.text("Another paragraph.");
let text3 = paragraph_div.append("p")
.classed("description", true)
.text("Yet another paragraph.");
let svg = div.append("svg")
svg.attr('width', 1000)
.attr('height', 300);
svg.append("circle")
.attr("cx", 100)
.attr("cy", 100)
.attr("r", 50)
.attr("fill", "blue");
svg.append("circle")
.attr("cx", 300)
.attr("cy", 100)
.attr("r", 50)
.attr("fill", "green");
svg.append("circle")
.attr("cx", 500)
.attr("cy", 100)
.attr("r", 50)
.attr("fill", "red");
d3.selectAll("circle")
.attr('r', 30);
div.selectAll("circle")
.attr('r', 30);
return div.node()
}