-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathc.html
executable file
·32 lines (30 loc) · 915 Bytes
/
c.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Provide a map of corporate presence across South America</title>
<link rel="stylesheet" href="bootstrap.css">
<link rel="stylesheet" href="global.css">
<style>
circle {
fill-opacity: .2;
}
</style>
</head>
<body>
<div class="center-block">
<header class="page-header">
<h1 class="text-center">Provide a map of corporate presence across South America</h1>
</header>
<h1 class="text-center" style="margin-top:0">The darker the area, the more companies there are</h1>
<svg height="500"></svg>
</div>
<script src="jquery.js"></script>
<script src="bootstrap.js"></script>
<script src="d3.js"></script>
<script src="topojson.v1.min.js"></script>
<script src="c.js"></script>
</body>
</html>