-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsocial.html
More file actions
126 lines (110 loc) · 5.04 KB
/
social.html
File metadata and controls
126 lines (110 loc) · 5.04 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html>
<head>
<!-- Created by ApatheticDELL -->
<title>ApatheticDELL Center</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="./navstyle.css">
<link rel="stylesheet" href="./universal.css">
<link rel="icon" type="image/x-icon" href="./assets/favicon.png">
<style>
.project { padding-bottom: 3vh; }
.projects_list {
display: flex;
flex-direction: column;
}
main {
display: flex;
flex-direction: column;
align-items: left;
margin-left: 25vw;
margin-right: 25vw;
}
header {
text-align: center;
}
@media (max-width: 800px) {
main {
margin-left: 5vw;
margin-right: 5vw; }
}
.projects_list a:link, .projects_list a:visited {
color: aqua;
}
</style>
</head>
<body>
<!-- Website navigation -->
<nav class="site-nav">
<div class="nav-left">
<img src="./assets/adlogo.png" alt="Logo" />
<span class="site-title">ApatheticDELL</span>
</div>
<div class="nav-right">
<a href="./index.html">Home</a>
<a href="./projects.html">Projects</a>
<a class="site-title" href="./social.html">Socials</a>
<a href="./about.html">About</a>
</div>
</nav>
<main>
<header>
<h1>Social Media</h1>
<p>The following is a list of the offical social media sites operated by ApatheticDELL.</p>
</header>
<div class="social_quicklinks">
<a href="#" title="YouTube" class="youtube"></a>
<a href="#" title="Discord" class="discord"></a>
<a href="#" title="Bluesky" class="bluesky"></a>
<a href="#" title="Twitter" class="twitter"></a>
</div>
<div>
<h1>Platform Branches</h1>
<p>Don't forget to comment, like, and subscribe...?</p>
<div class="advanced_button" onclick="window.location.href = `https://bsky.app/profile/apatheticdell.bsky.social`">
<img src="./assets/social/bluesky.png" style="height: 64px; width: auto;" />
<a href="#">
<span style="height: 64px; vertical-align: middle; display: table-cell;">Bluesky (@apatheticdell.bsky.social)</span>
</a>
</div>
<div class="advanced_button" onclick="window.location.href = `https://discord.com/users/398902777746685962`">
<img src="./assets/social/discord.png" style="height: 64px; width: auto;" />
<a href="#">
<span style="height: 64px; vertical-align: middle; display: table-cell;">Discord (@apatheticdell)</span>
</a>
</div>
<div class="advanced_button" onclick="window.location.href = `https://x.com/ApatheticDELL`">
<img src="./assets/social/twitter.png" style="height: 64px; width: auto;" />
<a href="#">
<span style="height: 64px; vertical-align: middle; display: table-cell;">X (@ApatheticDELL)</span>
</a>
</div>
</div>
<div class="projects_list">
<div class="project">
<h2>Mostly used</h2>
<span><strong>Bluesky: </strong></span><a href="">@apatheticdell.bluesky.social</a><br/>
<span><strong>Twitter: </strong></span><a href="">@ApatheticDELL</a><br/>
<span><strong>Offical Email: </strong></span><a href="mailto:apatheticdell@proton.me">apatheticdell@proton.me</a><br/>
</div>
<div class="project">
<h2>My other accounts</h2>
<span><strong>Reddit: </strong></span><a href="">u/ApatheticDELL</a><br/>
<span><strong>TikTok: </strong></span><a href="">@ApatheticDELL</a><br/>
<span><strong>Tumbler: </strong></span><a href="">apatheticdell</a><br/>
<span><strong>Instagram: </strong></span><a href="">apatheticdell</a><br/>
</div>
<div class="project">
<h2>Art related sites</h2>
<span><strong>DeviantArt: </strong></span><a href="">ApatheticDELL</a><br/>
<span><strong>FurAffinity: </strong></span><a href="">apatheticdell</a><br/>
</div>
</div>
</main>
<footer>
<p>Copyright © ApatheticDELL</p>
<a href="./social.html">Contact</a>
<br/><br/>
</footer>
</body>
</html>