aboutsummaryrefslogtreecommitdiff
path: root/projects/website/source/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'projects/website/source/index.html')
-rw-r--r--projects/website/source/index.html110
1 files changed, 110 insertions, 0 deletions
diff --git a/projects/website/source/index.html b/projects/website/source/index.html
new file mode 100644
index 0000000..f504cb6
--- /dev/null
+++ b/projects/website/source/index.html
@@ -0,0 +1,110 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8" />
+ <meta http-equiv="X-UA-Compatible" content="IE=edge" />
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+ <title>Unnamed Group | Games Should be Fun, not Work.</title>
+ <meta
+ name="description"
+ content="We're a community of gamers who enjoy playing games together in a casual and fun manner. Come join the Discord to get involved!"
+ />
+ <meta
+ name="keywords"
+ content="unnamed group, unnamed, group, games, gaming, community, discord, memes, fun, casual"
+ />
+ <link rel="icon" href="logo.gif" />
+ <style>
+ html {
+ background: black;
+ color: white;
+ font-family: monospace;
+ }
+
+ body {
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ max-width: 400px;
+ margin: 0 auto;
+ }
+
+ ::-webkit-scrollbar {
+ display: none;
+ }
+
+ main,
+ header,
+ footer {
+ display: flex;
+ flex-direction: column;
+ width: 100%;
+ }
+
+ header {
+ flex-direction: row;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ #logo {
+ height: 100px;
+ width: 100px;
+ }
+
+ #socials {
+ display: flex;
+ flex-direction: row;
+ justify-content: center;
+ gap: 1rem;
+ margin: 1rem 0;
+ }
+
+ #socials img {
+ height: 50px;
+ width: 50px;
+ }
+
+ main p {
+ font-size: 1.5rem;
+ text-align: justify;
+ }
+
+ footer {
+ flex-direction: row;
+ justify-content: space-between;
+ }
+
+ a {
+ color: gold;
+ text-decoration: none;
+ }
+ </style>
+ </head>
+ <body>
+ <header>
+ <img id="logo" src="logo.gif" alt="Unnamed Group logo" />
+ <div id="socials">
+ <a href="https://unnamed.group/discord">
+ <img src="https://cdn.simpleicons.org/discord" />
+ </a>
+ </div>
+ </header>
+ <main>
+ <p>
+ We're a community of gamers who enjoy playing games together in a casual
+ and fun manner. Come join the Discord to get involved!
+ </p>
+ </main>
+ <footer>
+ <a
+ href="https://find-and-update.company-information.service.gov.uk/company/14751183"
+ >
+ Est. 2016, Inc. 2023
+ </a>
+ <a href="mailto:hello@unnamed.group">hello@unnamed.group</a>
+ </footer>
+ </body>
+</html>