Files
Neocities/pages/links.html
2025-10-15 14:30:30 -05:00

156 lines
5.2 KiB
HTML

<!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>Void Links</title>
<style>
*{
margin:0;
padding:0;
}
body{
background-color: #2f0849;
text-align: center;
display: flex;
align-items: center;
flex-direction: column;
}
#mainView{
display: flex;
align-items: center;
flex-direction: column;
background-color: rgba(47, 105, 211, 0.479);
margin-top: 3vh;
height: 94vh;
width: 400px;
border-radius: 50px;
}
.socialList{
display: flex;
flex-direction: column;
align-items: center;
width: 400px;
overflow: scroll;
}
.socialLink{
background-color: #227777ad;
width: 300px;
margin: 5px;
border-radius: 50px;
height: 200px;
padding: 10px;
display: flex;
flex-direction: column;
align-items: center;
}
li{
height:80px;
}
ul{
list-style: none;
}
img{
width: 50px;
height:50px;
}
</style>
</head>
<body>
<div id="mainView">
<h1>My Social Links</h1>
<div class="socialList">
<div class="socialLink">
<a href="/xml/voidblog.xml">
<img src="/media/Icons/rss.png" alt="">
<h3>RSS Feed</h3>
</a>
</div>
<div class="socialLink">
<a href="https://discord.gg/XNqyCMBh">
<img src="https://cdn.prod.website-files.com/6257adef93867e50d84d30e2/66e3d80db9971f10a9757c99_Symbol.svg" alt="">
<h3>Join my Discord!</h3>
</a>
</div>
<div class="socialLink">
<a href="https://bsky.app/profile/w175b.bsky.social">
<img src="/media/socialicons/bsky.png" alt="Bluesky Logo">
<h3>Bluesky</h3>
</a>
</div>
<div class="socialLink">
<a href="https://thangs.com/designer/TechRunner">
<img src="https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fcdn-images-1.medium.com%2Fmax%2F1200%2F1*M2qoKcAgFg3zrtOwV0RCrQ.png&f=1&nofb=1&ipt=9e00768f14d5f4dccdcc09cb5175ee2d92ba89c8b376e90d6a2a9cf786a8ae69" alt="">
<h3>Thangs 3D Models</h3>
</a>
</div>
<div class="socialLink">
<a href="https://gitea.willow.fyi">
<img src="https://gitea.willow.fyi/assets/img/logo.svg" alt="">
<h3>Gitea</h3>
</a>
</div>
<div class="socialLink">
<a href="https://github.com/TechRunner2">
<img src="https://github.githubassets.com/assets/GitHub-Mark-ea2971cee799.png" alt="">
<h3>Lesser used Github</h3>
</a>
</div>
<div class="socialLink">
<a href="https://www.tumblr.com/thevoidwillowsystem">
<img src="https://static.tumblr.com/0du9egr/wi8rbqdo0/tumblrlogowhite.png" alt="">
<h3>New Tumblr</h3>
</a>
</div>
<div class="socialLink">
<a href="https://techrunner.tumblr.com/">
<img src="https://static.tumblr.com/0du9egr/wi8rbqdo0/tumblrlogowhite.png" alt="">
<h3>Old Tumblr</h3>
</a>
</div>
<div class="socialLink">
<a href="https://tech.lgbt/@techrunner">
<img src="https://tech.lgbt/packs/assets/logo-CMOH1sc4.svg" alt="">
<h3>Mastadon</h3>
</a>
</div>
<div class="socialLink">
<a href="https://t.me/W175B">
<img src="https://duckduckgo.com/i/a1db356a94e594ed.png" alt="">
<h3>Telegram</h3>
</a>
</div>
<div class="socialLink">
<a href="mailto:willowfyi@proton.me">
<img src="/media/Icons/mail.png" alt="">
<h3>Email Me!</h3>
</a>
</div>
<div class="socialLink">
<a href="https://steamcommunity.com/id/TechRunner">
<img src="https://help.steampowered.com/public/images/coin_small.png" alt="">
<h3>Steam</h3>
</a>
</div>
<!--Back Button-->
<div class="socialLink">
<a href="/index.html">
<h3>Go Back!</h3>
</a>
</div>
</div>
</div>
</body>
</html>
<!-- Template
<div class="socialLink">
<a href="http://">
<img src="" alt="">
<h3></h3>
</a>
</div>
-->