Skip to content

Commit

Permalink
Merge pull request #5 from TartejBrothers/Add
Browse files Browse the repository at this point in the history
Added Footer
  • Loading branch information
TartejBrothers authored Dec 7, 2023
2 parents 17f8c26 + f451613 commit 7e1e83c
Show file tree
Hide file tree
Showing 11 changed files with 153 additions and 0 deletions.
89 changes: 89 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@
font-family: roboto;
src: url("/fonts/roboto.ttf");
}
@font-face {
font-family: opensans;
src: url("/fonts/opensans.ttf");
}
* {
margin: 0;
padding: 0;
Expand Down Expand Up @@ -394,6 +398,76 @@ input[type="radio"]:checked {
background: #1b204a;
}

.footer {
background: linear-gradient(180deg, #000 0%, #1d1e20 100%);
color: #fff;
font-family: opensans;
padding: 40px 20px 40px 20px;
display: flex;
justify-content: center;
}
.footerlefthead {
display: flex;
align-items: center;
font-size: 10px;
color: #e6222b;
gap: 5px;
}
.footerlefthead img {
height: 30px;
}
.footerleftside {
display: flex;
font-size: 10px;
margin: 10px 0 10px 0;
}
.footerright {
display: flex;
justify-content: center;
align-items: flex-start;
}
.footerleft {
width: 30%;
padding: 10px;
}
.footerrightbody {
width: 32%;
padding: 10px;
font-size: 15px;
}
.footerrightheader {
color: #e6222b;
font-size: 20px;
}
.footerrightsplitter {
width: 20%;
border: 1px solid #e6222b;
margin: 20px 0 20px 0;
}
.footer ul {
list-style-type: none;
}
.footer ul li {
display: flex;
align-items: center;
gap: 10px;

margin-bottom: 10px;
}
.socials {
display: flex;
gap: 10px;
margin: 20px auto 20px auto;
}
.copyright {
font-size: 10px;
background-color: #e6222b;
padding: 30px 10px 30px 10px;
display: flex;
justify-content: center;
font-family: opensans;
color: #fff;
}
@media screen and (max-width: 1000px) {
.navitems {
display: none;
Expand Down Expand Up @@ -448,6 +522,21 @@ input[type="radio"]:checked {
.donationbtn {
padding: 20px;
}
.footer {
flex-direction: column;
}
.footerright {
flex-direction: column;
}
.footerleft {
width: 100%;
}
.footerrightbody {
width: 100%;
}
.socials {
justify-content: center;
}
}

@media screen and (min-width: 1400px) {
Expand Down
Binary file modified fonts/.DS_Store
Binary file not shown.
Binary file added fonts/opensans.ttf
Binary file not shown.
Binary file added images/assests/fb.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/assests/insta.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/assests/mail.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/assests/map.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/assests/phone.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/assests/twitter.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/assests/yt.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
64 changes: 64 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,70 @@ <h1>Donation</h1>
</form>
</div>
</div>
<div class="footer">
<div class="footerleft">
<div class="footerlefthead">
<img src="images/assests/logo.png" alt="logo" />
<h1>AD LIFE</h1>
</div>
<div class="footerleftside"><p>ADDING VALUE TO LIFE</p></div>
<div class="footerleftbody">
<p>
Our trust is registered under the Indian Trusts Act, 1882 with
Sub-Registrar at Kengeri, Bangalore since January 3rd, 2005.
</p>
</div>
</div>
<div class="footerright">
<div class="footerrightbody">
<div class="footerrightheader">WHO WE ARE</div>
<hr class="footerrightsplitter" />
<ul>
<li>> Homepage</li>
<li>> Activities</li>
<li>> Information</li>
<li>> Contribute Now</li>
<li>> Contact</li>
</ul>
</div>
<div class="footerrightbody">
<div class="footerrightheader">WHERE WE WORK</div>
<hr class="footerrightsplitter" />
<ul>
<li>
<img src="images/assests/map.png" alt="map" />B-803, 10-3-163/1
Amri Central Court Apartments Old Lance Lines , Secunderabad -
500025
</li>
<li>
<img src="images/assests/phone.png" alt="phone" />+91-9505051521
</li>

<li>
<img
src="images/assests/mail.png"
alt="mail"
/>[email protected]
</li>
</ul>
</div>
<div class="footerrightbody">
<div class="footerrightheader">FOLLOW US</div>
<hr class="footerrightsplitter" />
<p>
For more Regular updates and event announcements. Make sure to
follow us:
</p>
<div class="socials">
<img src="images/assests/fb.png" alt="facebook" />
<img src="images/assests/insta.png" alt="instagram" />
<img src="images/assests/twitter.png" alt="twitter" />
<img src="images/assests/yt.png" alt="youtube" />
</div>
</div>
</div>
</div>
<div class="copyright">Copyright 2023 © AD Life Trust.</div>
<script src="js/script.js"></script>
</body>
</html>

0 comments on commit 7e1e83c

Please sign in to comment.