mirror of
https://github.com/System-End/Team_Website.git
synced 2026-04-20 00:25:24 +00:00
72 lines
2.3 KiB
HTML
72 lines
2.3 KiB
HTML
<html>
|
|
<head>
|
|
<link
|
|
rel="icon"
|
|
type="image/x-icon"
|
|
href="/Resources/Favicons/favicon.png"
|
|
/>
|
|
<link rel="stylesheet" href="/Pages/style.css" />
|
|
<script>
|
|
window.addEventListener("DOMContentLoaded", (event) => {
|
|
fetch("/Pages/navbar.html")
|
|
.then((response) => response.text())
|
|
.then((data) => {
|
|
document.getElementById("navbar").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">
|
|
Projects
|
|
</h1>
|
|
<img
|
|
src="/Resources/Icons/team-icon.png"
|
|
id="TeamIcon"
|
|
alt="Team Icon"
|
|
/>
|
|
</div>
|
|
|
|
<div class="UnderConstruction">
|
|
This section is under construction...
|
|
</div>
|
|
|
|
<!-- Footer -->
|
|
<section class="footer">
|
|
<div class="social-icons">
|
|
<ul>
|
|
<li>
|
|
<a
|
|
href="https://www.facebook.com/Team1165"
|
|
target="_blank"
|
|
><img src="/Resources/Facebook.png" alt="Facebook"
|
|
/></a>
|
|
</li>
|
|
<li>
|
|
<a href="mailto:team1165@gmail.com" target="_blank"
|
|
><img src="/Resources/Gmail Logo.png" alt="Gmail"
|
|
/></a>
|
|
</li>
|
|
<li>
|
|
<a
|
|
href="https://www.instagram.com/teamparadise.1165"
|
|
target="_blank"
|
|
><img
|
|
src="/Resources/Instagram.png"
|
|
alt="Instagram"
|
|
/></a>
|
|
</li>
|
|
<li>
|
|
<a href="/Pages/newsletter form.html">Newsletter</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</section>
|
|
</body>
|
|
</html>
|