D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
mgarciaTT
Full window
Github gist
html basics_
Built with
blockbuilder.org
<header> </header> <style> p { font-size: 32px; } #first-paragraph { font-size: 50px; } .fancy { color: red; } </style> <body> <div class="fancy"> <p id="first-paragraph"> this is my text. </p> </div> <p id="second paragraph"> In New York </p> <svg height="100" width="100"> <circle cx="50" cy="50" r="40" stroke="rgb(50,255,255)"stroke-width="12" fill="DodgerBlue" /> </svg> </body>