특정 태그 전체를 선택

ex)

<p>Let's start D3</p>
<p>Let's start C3</p>

<script>
    d3.selectAll("p").style("color", "green");
</script>

Let's start D3 Let's start C3