View index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html lang='en'> | |
<head> | |
<meta charset='utf-8'> | |
<title>Snake</title> | |
<script src='http://d3js.org/d3.v3.js'></script> | |
<script src='http://d3js.org/colorbrewer.v1.js'></script> | |
<style> |
View index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html lang='en'> | |
<head> | |
<meta charset='utf-8'> | |
<title>Snake</title> | |
<script src='http://d3js.org/d3.v3.js'></script> | |
<script src='http://d3js.org/colorbrewer.v1.js'></script> | |
<style> | |
.axis path, .axis line { | |
fill: none; |
View index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang='en'> | |
<head> | |
<style> | |
text { | |
font-family: sans-serif; | |
font-size: 70%; | |
margin: 20px; | |
color: |
View index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<style> | |
.axis path, | |
.axis line { | |
fill: none; | |
stroke: black; | |
shape-rendering: crispEdges; | |
opacity: 0.5; | |
} |