<html>
<head>
<script type = "text/javascript" src = "https://cdn.jsdelivr.net/npm/d3@7"></script>
</head>
<body>
<div id = "hello">
Hello World!
</div>
<script>
d3.select("#hello").text();
</script>
</body>
</html>