Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

About us section improvement #89

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions index.css
Original file line number Diff line number Diff line change
Expand Up @@ -233,10 +233,17 @@ p {
padding: 10px;
line-height: 20px;
}
.about .row{
display:grid;
grid-template-columns: 27% 27% 27%;
grid-template-rows: 50% 50%;
grid-column-gap:2%;
padding-left:12%;
}

.about-col {
transition: transform 1s;
width: 25%;
width:100%;
display: inline-block;
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
border-radius: 5px;
Expand Down Expand Up @@ -479,7 +486,7 @@ main {

.title-head {
font-family: 'Alegreya Sans SC', sans-serif;
=======
=======
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Neuton:ital@1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand+SC&display=swap');
Expand Down
22 changes: 16 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
<link rel="stylesheet" href='index.css'>
<link rel="stylesheet" href='https://fontawesome.com/v4.7.0/icon/bars'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" />
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />


</head>
<title>BLOOD BUDDY</title>
Expand Down Expand Up @@ -49,43 +51,43 @@ <h1>Saving Lives </h1>
<h1 class="heading">What is this all about ?</h1> <br>
<p class="head-des" class="text">We solve the problem of blood emergencies by connecting <span class="one-line"><br></span> blood donors directly with people in blood need. </p>
<div class="row">
<div class="about-col">
<div class="about-col" data-aos="fade-left">
<div class="image">
<img src="./Images/drop.png">
</div>
<h3>What we do ?</h3>
<p>We connect blood donors with recipients, without any intermediary such as blood banks, for an efficient and seamless process.</p>
</div>
<div class="about-col">
<div class="about-col"data-aos="fade-up">
<div class="image">
<img src="./Images/innovation.png">
</div>
<h3>Innovative</h3>
<p>Bloood Buddy is an innovative approach to address global heath.We provide <span>immediate
access</span> to blood donors.</p>
</div>
<div class="about-col">
<div class="about-col" data-aos="fade-right">
<div class="image">
<img src="./Images/netwotk.png">
</div>
<h3>Network</h3>
<p>Blood Buddy is one of several community organizations working together as a network that responds to emergencies in an efficient manner.</p>
</div>
<div class="about-col">
<div class="about-col" data-aos="fade-down-left">
<div class="image">
<img src="./Images/noti.png">
</div>
<h3>Get notified</h3>
<p>Blood Buddy Connect works with network partners to connect blood donors and recipients through an automated SMS service and a mobile app.</p>
</div>
<div class="about-col">
<div class="about-col" data-aos="fade-down-up">
<div class="image">
<img src="./Images/cost.png">
</div>
<h3>Totally Free</h3>
<p>Blood Budyy's ultimate goal is to provide an easy -to-use, easy-to-access, fast, efficient, and reliable way to get life-saving blood, totally <span>Free of cost.</span></p>
</div>
<div class="about-col">
<div class="about-col" data-aos="fade-down-right">
<div class="image">
<img src="./Images/save.png">
</div>
Expand Down Expand Up @@ -225,6 +227,14 @@ <h3>JOIN OUR CAUSE</h3>
headerl.style.right = "-210px";
}
</script>
<!--Animation on about us section-->
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
duration:2000
});
</script>

</body>

</html>