Line + Area chart done, directory re-arranged

This commit is contained in:
bendtherules
2014-03-29 22:10:11 -07:00
parent 24d1afffbd
commit d67252f045
27 changed files with 1056 additions and 233 deletions
+30
View File
@@ -0,0 +1,30 @@
<!doctype html>
<html lang="en">
<!-- generate html and css according to degrees list -->
<head>
<meta charset="UTF-8">
<title>CSS PIE Chart</title>
<link rel="stylesheet" href="./pie.css">
</head>
<body>
<div class="pie-chart">
<div class="wrapper">
<div class="pie-part part-1">
<div class="part-inner"></div>
</div>
<div class="pie-part part-2">
<div class="part-inner"></div>
</div>
<div class="pie-part part-3">
<div class="part-inner"></div>
</div>
<div class="pie-part part-4">
<div class="part-inner"></div>
</div>
</div>
</div>
</body>
</html>