-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsocials.html
60 lines (57 loc) · 2.51 KB
/
socials.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Socials Page </title>
<!-- Favicon for the page title -->
<link rel="icon" type="image/png" href="https://images-ext-1.discordapp.net/external/rHuY0SJRu2p8_Oc2_gK8edjCvgXYYTzciKhz1_cszM8/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/818814991770845216/37baa813ea16c5ffa856bd2db06da67c.png?format=webp&quality=lossless" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap" />
<style>
body {
font-family: 'Roboto', sans-serif;
font-weight: 300; /* Light weight */
font-size: 18px; /* Larger font size */
background-color: #09001f; /* Dark background */
color: #f5f5f5; /* Light text */
margin: 0;
padding: 20px;
}
h1 {
color: #c4c0ff;
}
.discord {
color: #5865F2; /* Discord blue */
}
.youtube {
color: #FF0000; /* YouTube red */
}
footer {
position: fixed; /* Fix position at the bottom */
left: 0;
bottom: 0;
width: 100%; /* Full width */
background-color: rgb(178, 136, 255); /* White background */
color: #000000; /* Purple text color */
text-align: center; /* Center the text */
padding: 0px 0; /* Add some padding */
font-size: 16px; /* Font size */
line-height: 1;
box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.2); /* Add slight shadow for depth */
}
</style>
</head>
<body>
<h1>📢 My socials!</h1>
<span class="discord">My Discord: nobodyhasthisusername</span><br>
<span style="color: #ffffff;">My Email: [email protected]</span><br>
<span class="youtube">My YouTube: https://youtube.com/@AquaCobalt</span>
<meta property="og:title" content="AquaCobalt's Website - Socials" />
<meta property="og:description" content="🚧 This website is still in development!" />
<meta property="og:image" content="https://images-ext-1.discordapp.net/external/rHuY0SJRu2p8_Oc2_gK8edjCvgXYYTzciKhz1_cszM8/%3Fsize%3D1024/https/cdn.discordapp.com/avatars/818814991770845216/37baa813ea16c5ffa856bd2db06da67c.png?format=webp&quality=lossless" />
<meta property="og:url" content="https://aquacobalt.github.io/socials" />
<meta property="og:type" content="website" />
</body>
<footer>
<p>© 2024 Methuja Randira. All rights reserved.</p>
</footer>
</html>