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.
130 lines
3.7 KiB
130 lines
3.7 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>Education for All</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">Education for All</h1>
|
||
|
<div class="content">
|
||
|
<p>
|
||
|
Education is the foundation for a brighter future. It empowers individuals to achieve their full potential and creates opportunities for economic and social development.
|
||
|
</p>
|
||
|
<p>
|
||
|
<strong>Our Goals:</strong>
|
||
|
<ul>
|
||
|
<li>Provide access to quality education for underprivileged children.</li>
|
||
|
<li>Build schools in remote areas.</li>
|
||
|
<li>Offer scholarships for deserving students.</li>
|
||
|
<li>Promote adult literacy programs worldwide.</li>
|
||
|
</ul>
|
||
|
</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|