Built with blockbuilder.org
xxxxxxxxxx
<head>
<meta charset="utf-8">
<script src="https://d3js.org/d3.v4.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
<style>
.title{
font:Lobster;
fill:red;
}
</style>
</head>
<body>
<script>
// Feel free to change or delete any of the code you see in this editor!
var svg = d3.select("body").append("svg")
.attr("width", 960)
.attr("height", 500)
svg.append("text")
.text("Please don't judge me, I'm just trying to learn!")
.attr("y", 200)
.attr("x", 120)
.style("font-size", 36)
.style("font-family", "Lobster")
var fillers= d3.select("body").append("fillers")
.attr("y", 200)
.attr("x", 120)
fillers.append("text")
.text("what, don't you think learning a new skill is useful?")
.attr("y", 180)
.attr("x", 95)
.style("font-size", 25)
.style("font-family", "Monospace")
</script>
</body>
https://d3js.org/d3.v4.min.js