-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
28ddaf7
commit 4834fcd
Showing
1 changed file
with
55 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,55 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Tea Client</title> | ||
<link rel="shortcut icon" type="x-icon" href="assets/img/logo_white.png"> | ||
<link rel="stylesheet" href="/css/style.css"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" /> | ||
</head> | ||
<body> | ||
|
||
<section class="header"> | ||
<nav> | ||
<a href="index.html"><img src="assets/img/logo_white.png"></a> | ||
<h4>Tea Client</h4> | ||
<div class="nav-links"> | ||
<ul> | ||
<li><a href="download">DOWNLOAD</a></li> | ||
<li><a href="https://store.teaclient.net">STORE</a></li> | ||
<li><a href="https://docs.teaclient.net">DOCUMENTS</a></li> | ||
<li><a href="social">SOCIALS</a></li> | ||
<li><a href="news">NEWS</a></li> | ||
<li><a href="contact">CONTACT</a></li> | ||
</ul> | ||
</div> | ||
</nav> | ||
</section> | ||
|
||
<footer> | ||
<div class="footer-content"> | ||
<h3>Tea Client</h3> | ||
<ul class="socials"> | ||
<div class="footerNav"></div> | ||
<a href="https://twitter.com/TeaClientMine"><i class="fa-brands fa-twitter"></i></a> | ||
<a href="https://www.twitch.tv/teaclientminecraft"><i class="fa-brands fa-twitch"></i></a> | ||
<a href="https://discord.gg/teaclient"><i class="fa-brands fa-discord"></i></a> | ||
<a href="https://www.youtube.com/@teaclientmc"><i class="fa-brands fa-youtube"></i></a> | ||
</div> | ||
</ul> | ||
</div> | ||
<div class="footerNav"> | ||
<a href="index.html">Home</a> | ||
<a href="">FAQ</a> | ||
<a href="">Terms of Service</a> | ||
<a href="">Privacy Policy</a> | ||
</div> | ||
<div class="footer-bottom"> | ||
<p>Copyright © 2023 TeaClient</p> | ||
<p id="affiliation">Not affiliated with Mojang Studios</p> | ||
<div style="clear: both;"></div> | ||
</div> | ||
</footer> | ||
|
||
</body> | ||
</html> |