D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
molliemarie
Full window
Github gist
BartCHart1_HTML_Starter
Built with
blockbuilder.org
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>First Bar Chart Using HTML!</title> <style> /* 5) Set `rect` elements to have a "fill" of "purple" or whatever color you choose */ rect { fill: purple; } svg { border: 1px solid #f0f; } </style> </head> <body> <!-- 1) Make a container `<div>` in which you'll render your content --> <!-- 2) Create a `<p>` element in which you write "My Bar Chart" --> <!-- 3) Make a container `<svg>` element in which you'll place your rectangles --> <!-- 4) Put 3 `<rect>` inside of your `<svg>`--> </body> </html>