-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsocials.html
35 lines (35 loc) · 1.58 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
<!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>my social links</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="/favicon/favicon_dark.ico">
<meta content="lammab.fun" property="og:title" />
<meta content="needle's site / socials" property="og:description" />
<meta content="https://lammab.fun/socials" property="og:url" />
<meta content="https://lammab.fun/favicon/favicon_dark.png" property="og:image" />
<meta content="#43B581" data-react-helmet="true" name="theme-color" />
</head>
<body>
<div id="top_left_about">
<a href="index.html" id="back" ><== back to main site</a>
</div>
<div id="main_content">
<h1>socials</h1>
<a href="https://www.tiktok.com/@kys" id="main_links_small_spacing">tiktok</a>
<a href="https://www.youtube.com/channel/UCPxRQrGsFXIjbIc-XNJoWbA" id="main_links_small_spacing">youtube</a>
<a href="https://open.spotify.com/user/mypimd91oacmdsoy2nav6aj6j?si=e643fbd7e4064cfb" id="main_links_small_spacing">spotify</a>
<button onclick="copyText()" id="main_links_small_spacing">discord</button>
<a href="https://www.instagram.com/leeish0t/?hl=en" id="main_links_small_spacing">insta</a>
</div>
<script>
function copyText() {
navigator.clipboard.writeText("needle#4999");
alert("copied username to clipboard");
}
</script>
</body>
</html>