mirror of
https://github.com/lockfale/OSINT-Framework.git
synced 2026-08-29 03:09:42 +02:00
29 lines
345 B
HTML
29 lines
345 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<style>
|
|
|
|
.node {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.node circle {
|
|
fill: #fff;
|
|
stroke: steelblue;
|
|
stroke-width: 1.5px;
|
|
}
|
|
|
|
.node text {
|
|
font: 12px sans-serif;
|
|
}
|
|
|
|
.link {
|
|
fill: none;
|
|
stroke: #ccc;
|
|
stroke-width: 1px;
|
|
}
|
|
|
|
</style>
|
|
<body>
|
|
<script src="d3.min.js"></script>
|
|
<script src="arf.js"></script>
|
|
</body> |