Built with blockbuilder.org
forked from lnmunhoz's block: 1. Centered Circle
license: mit |
Built with blockbuilder.org
forked from lnmunhoz's block: 1. Centered Circle
<!DOCTYPE html> | |
<head> | |
<meta charset="utf-8"> | |
<script src="https://d3js.org/d3.v4.min.js"></script> | |
<style> | |
body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0 } | |
</style> | |
</head> | |
<body> | |
<div id="chart-area"></div> | |
<script> | |
const svg = d3.select("#chart-area") | |
.append("svg") | |
.attr("width", 400) | |
.attr("height", 400) | |
.style("border", "1px solid black") | |
const square = svg.append("rect") | |
.attr("width", 200) | |
.attr("height", 200) | |
.attr("x", 100) | |
.attr("y", 100) | |
.attr("fill", "blue") | |
</script> | |
</body> |