You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
FutureCraft/disaster.html

134 lines
4.0 KiB

6 months ago
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Disaster Relief</title>
<h3><a href="index.php" class="button">Back To Home Page</a></h3>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.button {
display: inline-block;
padding: 15px 25px;
font-size: 16px;
color: rgb(16, 15, 15);
background-color: #c1e8ad;
border: none;
border-radius: 5px;
text-decoration: none;
cursor: pointer;
text-align: center;
text-size-adjust: bold;
}
.book-container {
width: 80%;
max-width: 1000px;
height: 500px;
background: #f4e3c1;
border: 2px solid #d4af37;
border-radius: 10px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
display: flex;
overflow: hidden;
}
.book-page {
flex: 1;
background: #ffffff;
position: relative;
padding: 20px;
clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}
.book-page::before {
content: "";
position: absolute;
top: 0;
right: 0;
width: 30%;
height: 100%;
background: #f4e3c1;
box-shadow: inset -2px 0 4px rgba(0, 0, 0, 0.1);
clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}
.folded-paper {
position: relative;
background: #ffffff;
width: 90%;
height: 90%;
margin: auto;
padding: 20px;
box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
border-radius: 5px;
overflow: hidden;
}
.folded-paper::after {
content: "";
position: absolute;
top: 0;
right: 0;
width: 50px;
height: 50px;
background: linear-gradient(135deg, #ffffff 50%, #f4e3c1 50%);
clip-path: polygon(0 0, 100% 0, 0% 100%);
}
.content {
font-size: 1.2em;
line-height: 1.6;
color: #333;
text-align: justify;
}
.book-title {
text-align: center;
font-size: 2em;
margin-bottom: 10px;
color: #4dcf76;
}
</style>
</head>
<body>
<div class="book-container">
<div class="book-page">
<div class="folded-paper">
<h1 class="book-title">Disaster Relief</h1>
<div class="content">
<p>
Natural disasters can strike anytime, leaving devastation in their wake. Immediate and effective disaster relief efforts
are essential to saving lives and helping communities rebuild.
</p>
<p>
<strong>Our Mission:</strong>
<ul>
<li>Provide emergency supplies like food, water, and shelter to affected areas.</li>
<li>Support rebuilding efforts to restore homes and infrastructure.</li>
<li>Facilitate medical aid and healthcare services for disaster victims.</li>
<li>Offer long-term support for community resilience and preparedness.</li>
</ul>
</p>
<p>
Every donation makes a difference. Together, we can help communities recover and thrive after disasters.
</p>
</div>
</div>
</div>
</div>
</body>
</html>