<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fund Opportunities</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #35424a;
color: white;
text-align: center;
padding: 1rem;
}
main {
padding: 2rem;
max-width: 800px;
margin: 0 auto;
}
.fund {
background-color: white;
border-radius: 5px;
padding: 1rem;
margin-bottom: 1rem;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.fund h2 {
color: #35424a;
margin-top: 0;
}
</style>
</head>
<body>
<header>
<h1>Fund Opportunities</h1>
</header>
<main>
<div class="fund">
<h2>Technology Innovation Fund</h2>
<p>This fund supports startups and research projects in emerging technologies such as AI, blockchain, and renewable energy.</p>
<p><strong>Application Deadline:</strong> June 30, 2024</p>
<p><strong>Link:</strong> <a href="https://offices.ju.edu.jo/en/oir/Pages/Fund-Partners.aspx">Fund Partners</a>
</div>
<div class="fund">
<h2>Community Development Grant</h2>
<p>Aimed at local initiatives that improve infrastructure, education, or healthcare in underserved communities.</p>
<p><strong>Application Deadline:</strong> August 15, 2024</p>
<p><strong>Link:</strong> <a href="https://offices.ju.edu.jo/en/oir/Pages/Fund-Partners.aspx">Fund Partners</a>
</div>
<div class="fund">
<h2>Environmental Conservation Fund</h2>
<p>Supports projects focused on biodiversity preservation, climate change mitigation, and sustainable resource management.</p>
<p><strong>Application Deadline:</strong> September 1, 2024</p>
<p><strong>Link:</strong> <a href="https://offices.ju.edu.jo/en/oir/Pages/Fund-Partners.aspx">Fund Partners</a>
</div>
</main>
</body>
</html>