Untitled
unknown
html
2 years ago
2.5 kB
0
Indexable
<!DOCTYPE html> <html> <head> <title>Eta Client</title> <link rel="stylesheet" type="text/css" href="style.css"> <link rel="icon" href="Logo.jpeg"> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: rgb(43, 43, 43); } header { padding: 35px; background-color: #222222; display: flex; justify-content: flex-start; align-items: center; } .homelink { text-decoration: none; color: grey; font-size: 40px; margin-left: auto; margin-right: auto; transition: color 0.3s ease; } .faqlink { text-decoration: none; color: grey; margin-left: auto; margin-right: auto; font-size: 40px; transition: color 0.3s ease; } .githublink { text-decoration: none; color: grey; font-size: 40px; margin-left: auto; margin-right: auto; transition: color 0.3s ease; } .faqlink:hover { color: white; } .homelink:hover { color: white; } .githublink:hover { color: white; } .headline { display: flex; justify-content: center; align-items: center; background: linear-gradient(to right, #316AA4 33%, #7B6BB6 50%, #CE6CC9); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .headline2 { display: flex; justify-content: center; align-items: center; background: linear-gradient(to right, #316AA4 33%, #3E7C9C 50%, #5BA688); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-top: -40px; } .headline h1 span { font-size: 30px; transition: font-size 0.3s ease; } .headline:hover h1 span { font-size: 40px; } .headline2 h1 span { font-size: 30px; transition: font-size 0.3s ease; } .headline2:hover h1 span { font-size: 40px; } </style> </head> <body> <header> <a class="homelink" href="index.html">Home</a> <a class="faqlink" href="index.html">FAQ</a> <a class="githublink" target="_blank" href="https://Github.com/tqeez">GitHub</a> </header> <br> <div class="headline"> <h1> <span>Eta Client</span> </h1> </div> <div class="headline2"> <h1> <span>Based Minecraft Utility Mod</span>
Editor is loading...