-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New Footer design added (footer - 8)
- Loading branch information
1 parent
bc64832
commit f4c18d5
Showing
1 changed file
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
<!-- | ||
Author : Unviray | ||
Github link : /~https://github.com/Unviray | ||
--> | ||
<!DOCTYPE html> | ||
<html lang="en" style="height: 100%;"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=H, initial-scale=1.0"> | ||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/css/bootstrap.min.css" rel="stylesheet" | ||
integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous"> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" | ||
rel="stylesheet"> | ||
<title>Hacktoberfest 2021 - footer theme</title> | ||
</head> | ||
|
||
<body class="d-flex flex-column" style="height: 100%; font-family: 'Poppins', sans-serif;"> | ||
<footer class="mt-auto" style="background-color: #DBE8D9;"> | ||
<div class="container"> | ||
<div class="row py-5"> | ||
<div class="col-md-6 mb-3"> | ||
<h2 class="fw-bold fs-1" style="color: #B53A25;">Giving</h2> | ||
<p>Participate by giving to a Hacktoberfest '21 Project today</p> | ||
<button class="btn btn-danger rounded-pill btn-lg px-4" style="background-color: #f74700;">Give</button> | ||
</div> | ||
<div class="col-md-3 mb-3"> | ||
<h2 class="fw-bold fs-4" style="color: #B53A25;">Share</h2> | ||
<ul class="nav flex-column"> | ||
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-reset">Twitter</a></li> | ||
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-reset">Facebook</a></li> | ||
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-reset">Linkeding</a></li> | ||
</ul> | ||
</div> | ||
<div class="col-md-3 mb-3"> | ||
<h2 class="fw-bold fs-4" style="color: #B53A25;">Legal</h2> | ||
<ul class="nav flex-column"> | ||
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-reset">Terms</a></li> | ||
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-reset">Privacy</a></li> | ||
<li class="nav-item mb-2"><a href="#" class="nav-link p-0 text-reset">Brand Guidelines</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="navbar"> | ||
<div class="container"> | ||
<p class="mb-1 mx-auto"> | ||
Website made possible by: John Doe | Alice | Bob. | © 2021 Companie, LLC. All rights reserved. | ||
</p> | ||
</div> | ||
</div> | ||
</footer> | ||
</body> | ||
|
||
</html> |