This page will show the provided text about the Digital Research Alliance of Canada, along with a button leading to the Alliance website and a button to go back to the main page.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alliance</title>
<style>
body {
background-color: black;
color: white;
font-family: Arial, sans-serif;
font-size: 20px;
margin: 0;
padding: 0;
}
.container {
padding: 20px;
text-align: left;
}
.button {
background-color: yellow;
color: black;
border: none;
padding: 15px;
font-size: 25px;
cursor: pointer;
text-align: center;
border-radius: 5px;
}
.button:hover {
background-color: #ccc;
}
.back-button {
background-color: gray;
margin-top: 60px;
}
</style>
</head>
<body>
<div class="container">
<h1>The Digital Research Alliance of Canada</h1>
<p>The Digital Research Alliance of Canada serves Canadian researchers, with the objective of advancing Canada’s position as a leader in the knowledge economy on the international stage. By integrating, championing and funding the infrastructure and activities required for advanced research computing (ARC), research data management (RDM) and research software (RS), we provide the platform for the research community to access tools and services faster than ever before.</p>
<!-- Button to Access Alliance -->
<button class="button" onclick="window.location.href='https://alliancecan.ca/en'">Access to Alliance</button>
<!-- Back button to main page -->
<button class="button back-button" onclick="window.location.href='{% url 'home' %}'">Back to Main Page</button>
</div>
</body>
</html>