-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (69 loc) · 1.87 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
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<meta charset="utf-8" />
<title>Annual Mortality Rates in Palestine</title>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Lato:400,400i,700,700i&display=swap"
/>
<link rel="stylesheet" href="style.css" />
<body id="body" class="">
<div class="chart-container">
<div id="color-key">
<div class="color-key">
<div class="color-container">
<div
class="color-box color-1"
style="background-color: #e74c3c"
></div>
<span class="color-label">Palestinians</span>
</div>
<div class="color-container">
<div
class="color-box color-2"
style="background-color: #3cab4b"
></div>
<span class="color-label">Palestinians Children</span>
</div>
<div class="color-container">
<div
class="color-box color-3"
style="background-color: #3498db"
></div>
<span class="color-label">israeliens </span>
</div>
<!-- Add more color boxes and labels as needed -->
</div>
</div>
<svg width="960" height="500"></svg>
<a
id="link_button"
href="https://www.thepalestineacademy.com/"
target="_blank"
>
History of Palestine
</a>
</div>
<div id="footer">
From the river to the sea palestine will be free 🇵🇸
</div>
<div class="toggle-container" id="toggleDarkMode">
<label class="toggle-switch">
<input type="checkbox" />
<span class="toggle-slider" onclick="toggleDarkMode(event)"></span>
</label>
<label class="toggle-label">Dark Mode</label>
</div>
<a
class="feedback"
href="https://docs.google.com/forms/d/e/1FAIpQLScZtsbmWzRoC9_SpcKVzeSdHNuxwLBPUfi-mNmFZKpZDX5N1Q/viewform?usp=sf_link"
target="_blank"
>
Feeback Form
</a>
<script src="./libraries/d3.min.js"></script>
<script src="./script.js"></script>
</body>