Skip to content

Instantly share code, notes, and snippets.

@jgoodie
Created August 8, 2022 03:32
Show Gist options
  • Save jgoodie/144d34109e073399ce0936bc121ae639 to your computer and use it in GitHub Desktop.
Save jgoodie/144d34109e073399ce0936bc121ae639 to your computer and use it in GitHub Desktop.
Basic index.html file for D3 projects
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="">
<title>Iris Scatter Plots</title>
<!-- Bootstrap -->
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa" crossorigin="anonymous"></script>
<!-- Custom styling -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- External JS libraries -->
<script src="https://d3js.org/d3.v7.min.js"></script>
<!-- Custom JS -->
<script src="js/main.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment