-
Notifications
You must be signed in to change notification settings - Fork 1
/
flower.html
30 lines (29 loc) · 896 Bytes
/
flower.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>D3 Flower of Life</title>
<script type="text/javascript" src="d3/d3.v3.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<link href="css/bootstrap.min.css"
rel="stylesheet"
media="screen">
<link href="css/flower.css"
rel="stylesheet">
</head>
<body>
<div class="conatiner">
<div class="row">
<div class="span4">
<h4>The Flower of Life</h4>
</div>
<div class="span8" class="hero-unit">
<div id="graph"></div>
</div>
</div>
</div>
<script type="text/javascript" src="js/underscore.js"></script>
<script type="text/javascript" src="js/flower.js"></script>
</body>
</html>