Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Zekcya committed May 7, 2024
0 parents commit 1fa0a99
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 0 deletions.
Binary file added icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Coming Soon</title>
<link rel="stylesheet" href="styles.css" />
<link rel="icon" type="icon/png" href="icon.png" />
</head>
<body>
<div class="container">
<!-- Hello There -->
<h1>Coming Soon</h1>
<div class="social-links">
<a href="https://twitter.com/Zekcya" target="_blank">Twitter</a>
<a href="https://github.com/Zekcya" target="_blank">GitHub</a>
<a href="https://www.twitch.tv/zekcya" target="_blank">Twitch</a>
</div>
<p>Contact: [email protected]</p>
</div>
</body>
</html>
25 changes: 25 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
body,
html {
height: 100%;
margin: 0;
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
display: flex;
align-items: center;
justify-content: center;
}

.container {
text-align: center;
}

.social-links a {
margin: 0 10px;
color: #555;
text-decoration: none;
}

.social-links a:hover {
text-decoration: underline;
}

0 comments on commit 1fa0a99

Please sign in to comment.