-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (60 loc) · 1.62 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<html>
<head>
<style>
body {
background: linear-gradient(to bottom, #000046, #000014);
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
h1 {
color: white;
font-size: 2.5rem;
margin: 0;
font-family: "Helvetica Neue", sans-serif;
}
a {
color: white;
text-decoration: none;
}
.button {
display: flex;
align-items: center;
justify-content: center;
background-color: #ffffff;
color: rgb(0, 0, 0);
border: none;
padding: 1rem 2rem;
font-size: 1.2rem;
cursor: pointer;
border-radius: 5px;
margin: 1rem 0;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.button img {
height: 1.5rem;
margin-right: 0.5rem;
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to SoStressful's GitHub!</h1>
<a class="button" href="https://github.com/SoStressful" target="_blank">
<img src="https://cdn.jsdelivr.net/npm/[email protected]/icons/github.svg" alt="GitHub logo">
GitHub
</a>
<a class="button" href="https://discordapp.com/channels/@me/SoStressful#0001" target="_blank">
<img src="https://cdn.jsdelivr.net/npm/[email protected]/icons/discord.svg" alt="Discord logo">
Discord: SoStressful#0001
</a>
</div>
</body>
</html>