-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (42 loc) · 1.44 KB
/
index.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<title>D3 js</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="format-detection" content="telephone=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="description" content="">
<link rel="stylesheet" href="//fenixrepo.fao.org/cdn/js/bootstrap/3.3.4/css/bootstrap.min.css">
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="container">
<div class="row text-center">
<div class="col-md-6">
<h3>Foods</h3>
<svg width="450" height="450" id="bubble"></svg>
</div>
<div class="col-md-6">
<h3>Beverages</h3>
</div>
</div>
<div class="row text-center">
<div class="col-md-6">
<h3>Percentage of population at risk of iron inadequacy</h3>
<div id="mask1"></div>
<svg id="bar1"></svg>
</div>
<div class="col-md-6">
<h3>Beverages</h3>
</div>
</div>
</div>
<!-- Jquery -->
<script src="//fenixrepo.fao.org/cdn/js/jquery/2.1.1/jquery.min.js"></script>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script data-main="main" src="gift-bubble.js"></script>
<script data-main="main" src="gift-bar1.js"></script>
</body>
</html>