D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
Nate-Holland
Full window
Github gist
TTworkshop - html basic
Built with
blockbuilder.org
this is a basic example to get started with development
<header> </header> <style> p{ font-size:28px; } #first-paragraph{ font-size:50px; } .fancy{ color: red; } </style> <body> <div class="fancy"> <p id="first-paragraph" style="color:blue"> this is my text. </p> </div> <p id="second-paragraph"> I'm here for the d3 workshop </p> <svg height="100" width="100"> <!-- this is how you comment --> <!-- lets add a circle --> <circle cx="50" cy="50" r="50" stroke="black" stroke-width="8" fill="rgb(150, 0, 0)"/> </svg> <body>