-
Notifications
You must be signed in to change notification settings - Fork 1
/
saudization.html
38 lines (31 loc) · 1.45 KB
/
saudization.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Saudization</title>
<link href='https://fonts.googleapis.com/css?family=Nunito:300,400' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto:300' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=PT+Sans:400,400italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/main.css" type="text/css">
</head>
<body>
<div id="tooltip" class="hidden" style="left: 429px, top: 489.6px">
<p><strong><span id="provinceName">Riyadh</span></strong></p>
<p><span class="total-workforce"></span> Saudi workforce: <span id="saudi">XXX</span></p>
<p><span class="total-workforce"></span> Non-Saudi workforce: <span id="expats">XXX</span></p>
<p id="caption"><br></p>
</div>
<div id="buttons">
<p><span id="byWorkforce" class="button">By workforce</span></p>
<p><span id="byIndustry" class="button">By industry</span></p>
<p><span id="byRegion" class="button">By region</span></p>
</div>
<div id="industryMenu"></div>
<!-- Importing some libraries: d3js, topojson, queueJS -->
<script src="js/d3.min.js" charset="utf-8"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/queue-async/1.0.7/queue.min.js"></script>
<!-- EPoD visualization -->
<script src="js/visualization.js"></script>
</body>
</html>