如何在 html 中添加 d3

How to add d3 in html

我是 D3 的初学者,我想在我的 index.html

table 之后添加一个简单的折线图
<!DOCTYPE html>
<html>

<head>
 <link rel="stylesheet" type="text/css" href="sheet.css">
    <script src="jquery-1.11.2.js"></script>
    <script src="d3.js"></script>
    <script src="d3.min.js"></script>
    <script type="text/JavaScript" src="script.js"></script>
</head>

<body>
    <div class="container">

            <table id="personsTab"> 
            <tr>
                <th id="name"><span>Name</span></th>
                <th id="birth"><span>Birth</span></th>
                <th id="death"><span>Death</span></th>
            </tr>   
            </table>

    </div>
</body>
</html>

我找到了这个 code 但不知道如何添加它。

我鼓励您学习这些教程Aligned Left它们涵盖了设置等基础知识以及一些更简单的图表形式