-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (67 loc) · 4.21 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en" dir="auto">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Tripticon84</title>
<meta name="description" content="Here you can find more about me and my links to various other pages.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="data/favicon.png">
<meta name="robots" content="index, follow">
<meta property="og:image" content="data/logo.png">
<meta property="og:site_name" content="Tripticon84">
<meta property="og:url" content="https://tripticon84.github.io">
<meta property="og:type" content="website">
<meta property="og:description" content="Here you can find more about me and my links to various other pages.">
<meta property="og:title" content="Welcome to my homepage">
</head>
<body>
<header>
<nav>
<a href="index" class="nav_button">Home</a>
<a href="portfolio" class="nav_button">Portfolio</a>
<a href="about" class="nav_button">About</a>
</nav>
</header>
<section>
<aside>
<img id="pp" src="data/logo.png" alt="Profile Picture" width="175" height="175">
<p id="desc">
My name is Yann, 17 years old. I love IT, video games and new technology.
I am in high school in IT speciality. <br />
I learned <strong>HTML</strong>, <strong>CSS</strong>, <strong>SolidWorks</strong>, <strong>DaVinci Resolve</strong>, <strong>Arduino</strong>.
I am keen on video games as <a href="https://csgostats.gg/player/76561198371170743" target="_blank"><strong>Counter-Strike: Global Offensive</strong></a>
and <a href="https://osu.ppy.sh/users/14840872" target="_blank"><strong>osu!</strong></a>
but I also play many other games.
</p>
</aside>
<div id="box_social">
<a class="social grow" href="#"><img id="btn" data-clipboard-text="tripticon84#8383" class="social" src="data/social/discord.svg" title="Discord" alt="Discord" /></a>
<a class="social grow" target="_blank" href="https://github.com/Tripticon84"><img class="social" src="data/social/github.svg" title="Github" alt="Github" /></a>
<a class="social grow" target="_blank" href="https://reddit.com/u/Tripticon84"><img class="social" src="data/social/reddit.svg" title="Reddit" alt="Reddit" /></a>
<a class="social grow" target="_blank" href="https://steamcommunity.com/id/Tripticon84/"><img class="social" src="data/social/steam.svg" title="Steam" alt="Steam" /></a>
<a class="social grow" target="_blank" href="https://twitch.tv/tripticon84"><img class="social" src="data/social/twitch.svg" title="Twitch" alt="Twitch" /></a>
<a class="social grow" target="_blank" href="https://twitter.com/Tripticon84"><img class="social" src="data/social/twitter.svg" title="Twitter" alt="Twitter" /></a>
<a class="social grow" target="_blank" href="https://www.youtube.com/@Tripticon84"><img class="social" src="data/social/youtube.svg" title="Youtube" alt="Youtube" /></a>
<a class="social grow" target="_blank" href="https://osu.ppy.sh/users/14840872"><img class="social" src="data/social/osu.svg" title="osu!" alt="osu!" /></a>
</div>
</section>
<script src="https://cdn.jsdelivr.net/npm/clipboard@2.0.10/dist/clipboard.min.js"></script>
<script>
var btn = document.getElementById('btn');
var clipboard = new ClipboardJS(btn);
clipboard.on('success', function (e) {
console.info('Action:', e.action);
console.info('Text:', e.text);
console.info('Trigger:', e.trigger);
alert("Copied discord id: tripticon84#8383");
});
clipboard.on('error', function (e) {
console.info('Action:', e.action);
console.info('Text:', e.text);
console.info('Trigger:', e.trigger);
});
</script>
</body>
</html>