diff --git a/FORCE_DIRECTED_GRAPH.md b/FORCE_DIRECTED_GRAPH.md index 81d30c5..38e0ddc 100644 --- a/FORCE_DIRECTED_GRAPH.md +++ b/FORCE_DIRECTED_GRAPH.md @@ -42,3 +42,25 @@ Pretty standard, but we'll need two `` elements: ``` + +## Set up styling for nodes and links + +Create a css file for our circles (nodes/people) and lines (links/relationships) + +```css +circle { + fill: red; + r: 5; +} + +line { + stroke: grey; + stroke-width: 1; +} +``` + +Don't forget to link to it! + +```html + +```