d3.unconf example gist. Fork it here.
| <!DOCTYPE html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <link type="text/css" rel="stylesheet" href="style.css"/> | |
| </head> | |
| <body> | |
| <h2 class="d3-unconf">d3.unconf</h2> | |
| <div id="chart"></div> | |
| <script src="http://d3js.org/d3.v3.min.js"></script> | |
| <script src="src.js"></script> | |
| </body> | |
| </html> |
| @import url("//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,400,300,700"); | |
| body { | |
| font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Helvetica, Arial, sans-serif; | |
| } | |
| .d3-unconf { | |
| color: #222; | |
| font-size: 44px; | |
| font-style: normal; | |
| font-weight: 300; | |
| text-rendering: optimizelegibility; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment