mirror of
https://github.com/System-End/Team_Website.git
synced 2026-04-19 22:05:15 +00:00
88 lines
2.8 KiB
HTML
88 lines
2.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<link
|
|
rel="icon"
|
|
type="image/x-icon"
|
|
href="/Resources/Favicons/favicon.png"
|
|
/>
|
|
<link rel="stylesheet" href="/Pages/style.css" />
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<script>
|
|
window.addEventListener("DOMContentLoaded", (event) => {
|
|
fetch("/Pages/navbar.html")
|
|
.then((response) => response.text())
|
|
.then((data) => {
|
|
document.getElementById("navbar").innerHTML = data;
|
|
});
|
|
fetch("/Pages/socials.html")
|
|
.then((response) => response.text())
|
|
.then((data) => {
|
|
document.getElementById("socials").innerHTML = data;
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<!--Navigation Bar-->
|
|
<div id="navbar"></div>
|
|
|
|
<!-- Body -->
|
|
<div class="Title-Container">
|
|
<h1 class="page-title" style="width: 100%; text-align: center">
|
|
Donate
|
|
</h1>
|
|
<img
|
|
src="/Resources/Icons/Pencil-icon.png"
|
|
id="TeamIcon"
|
|
alt="Team Icon"
|
|
/>
|
|
</div>
|
|
|
|
<div class="UnderConstruction">
|
|
This section is under construction...
|
|
</div>
|
|
|
|
<!-- <div class="divider">
|
|
<hr />
|
|
<h1
|
|
style="
|
|
display: flex;
|
|
justify-content: center;
|
|
text-align: center;">
|
|
Resources
|
|
</h1>
|
|
<hr />
|
|
</div>
|
|
<div
|
|
style="margin: auto; width: 80%; color: #f1f1f1; text-align: center"
|
|
>
|
|
|
|
<a href="https://venmo.com/u/Gina-DisipioParrish"class="button"
|
|
>Thank you for your support to our team! Use our Venmo link here to make your donation.If you have any questions about
|
|
making a donation, please contact us at <a href="mailto:team1165@gmail.com">team1165@gmail.com</a><br /><br />Thank you for your support!</a
|
|
>
|
|
|
|
</div>
|
|
<div style="height: 30%"></div>
|
|
<a
|
|
href="https://www.notion.so/d3c957c706684065a480779f7f0f240d?v=cd0bd8cc4da046f6a999f825990bcd94"
|
|
style="
|
|
color: white;
|
|
font-size: 2vw;
|
|
text-align: center;
|
|
justify-content: center;
|
|
align-items: center;
|
|
display: flex;
|
|
"
|
|
>Notion Book</a
|
|
>
|
|
<div style="height: 30%"></div> -->
|
|
|
|
<!-- Footer -->
|
|
<div id="socials"></div>
|
|
</body>
|
|
</html>
|