-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
156 lines (123 loc) · 4.66 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="HandheldFriendly" content="true">
<meta name="MobileOptimized" content="640">
<link rel="stylesheet" href="/stylesheets/style.css">
<link rel="stylesheet" href="/stylesheets/header.css">
<link rel="stylesheet" href="/stylesheets/nav.css">
<link rel="stylesheet" href="/stylesheets/main.css">
<link rel="stylesheet" href="/stylesheets/footer.css">
<link rel="shortcut icon" type="image/png" href="/images/favicon.png">
<title>UN Modelling Tools</title>
</head>
<body>
<header>
<a id="title" href="/">
Modelling Tools
<br>
<div id="for-sustainable-development">for sustainable development</div>
</a>
<div id="logos">
<a href="http://www.undp.org/">
<img src="/images/logos/undp.svg"
alt="UNDP Logo">
</a>
<a href="https://www.un.org/development/desa/en/">
<img src="/images/logos/undesa.png"
alt="UNDESA Logo">
</a>
</div>
</header>
<nav>
<input id="toggle"
class="no-desktop"
type="checkbox">
<div class="no-desktop">
<label for="toggle">
<svg style="width:28px;height:28px" viewBox="0 0 24 18">
<path fill="white" d="M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z"></path>
</svg>
</label>
</div>
<a href="/about"
class="toggleable">About</a>
<a href="/modelling-tools"
class="toggleable">Modelling Tools</a>
<a href="/country-projects"
class="toggleable">Country Projects</a>
<a href="/outreach-training"
class="toggleable">Outreach Training</a>
<a href="/news-events"
class="toggleable">News and Events</a>
<script>
(function() {
var as = document.querySelectorAll('body > nav a');
var path = location.pathname;
for (var a of as) {
var regex = new RegExp(`${a.pathname}`);
if (!a.href.match('#') && path.match(regex)) {
a.classList.add('active');
break;
}
}})();
</script>
</nav>
<main>
<!-- CONTENT-STARTS -->
<link rel="stylesheet" href="/stylesheets/index.css">
<section class="banner"
style="background-image: url(/images/photos/haiti-coastline.jpg);
min-height: 500px;">
</section>
<section style="display: block !important;">
<h1>Our commitment to the 2030 Agenda for Sustainable Development</h1>
<div style="font-size: 1.3em;">
<p>The 2030 Agenda for Sustainable Development represents a historic international commitment to improving human well-being and protecting our shared planet. It calls on each country to carefully balance economic, social and environmental priorities, and choose the right mix of public policy options.</p>
<p>To help policymakers meet this challenge, the United Nations Department of Economic and Social Affairs, the United Nations Development Programme and partners have created a suite of analytical modelling tools. These track the complex interactions of different dimensions of sustainable development. Countries are using these tools to move forward on core objectives such as achieving sustainable economic growth, tackling climate change and advancing social inclusion.</p>
</div>
</section>
<section class="banner"
style="background-image: url(/images/photos/secretariat-with-flags.jpg);">
<div class="section-header"
style="flex: unset;
font-family: Garamond, Georgia, Optima, monospace, serif;
background-color: rgba(255, 255, 255, 0.7);
color: #111;
margin: 3em auto;
padding: 1em 2em;">
<p style="text-align: left;
font-size: 1.7em;">
<span class="huge-open-quotes"> </span>
<span style="font-family: monospace; font-size: 0.8em;">[...]</span> the United Nations shall promote:<br>
higher standards of living, <br>
full employment,<br>
and conditions of economic and social<br>
progress and development.
<span class="huge-close-quotes"></span>
</p>
<p style="text-align: right;">
- UN Charter, Art. 55a
</p>
</div>
</section>
<!-- CONTENT-ENDS -->
</main>
<footer>
<div class="t-col">
<a href="http://www.un.org/en/sections/about-website/copyright">Copyright</a>
</div>
<div class="t-col">
<a href="https://www.un.org/en/sections/about-website/terms-use">Terms of Use</a>
</div>
<div class="t-col">
<a href="http://www.un.org/en/sections/about-website/privacy-notice">Privacy Notice</a>
</div>
<div class="t-col">
<a href="mailto:[email protected]">Contact</a>
</div>
</footer>
</body>
</html>