Create a gist now

Instantly share code, notes, and snippets.

D3 workshop
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://d3js.org/d3.v3.js"></script>
<style>
</style>
</head>
<body>
<div class="first">Box 1</div>
<div class="second">Box 2</div>
<div class="third">Box 3</div>
<script>
d3.select('.first').style('color', 'blue');
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment