-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (45 loc) · 1.98 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>VCA repository</title>
<link rel="shortcut icon" href="./ifrc-digital-32x32.png" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<style>
body {
background: #f0f0f0;
}
.jumbotron {
background: #ffffff;
}
.vertical-center {
min-height: 100%;
min-height: 100vh;
display: flex;
align-items: center;
}
#logo-ifrc {
height: 100px;
}
</style>
</head>
<body>
<div class="container py-4 vertical-center">
<div class="p-5 mb-4 jumbotron rounded-3">
<div class="container-fluid py-5">
<img id="logo-ifrc" src="./Logo-Horizontal-RGB-300ppi.png" alt="IFRC logo" />
<h1 class="display-6 fw-bold">VCA Repository</h1>
<p class="lead">The Vulnerability Capacity Assessment (VCA) repository site has been retired! Please update your bookmarks. You may be interested in the following websites:
<ul class="lead">
<li><a href="https://www.ifrc.org/our-work/disasters-climate-and-crises/climate-smart-disaster-risk-reduction/risk-assessment-planning">IFRC Risk assessment and planning</a></li>
<li><a href="https://preparecenter.org/site/evca/">EVCA Platform</li>
<li><a href="https://rmd.ifrc.org/">Community Resilience Measurement Dashboard</a></li>
</ul>
</p>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.min.js" integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13" crossorigin="anonymous"></script>
</body>
</html>