-
Notifications
You must be signed in to change notification settings - Fork 0
/
socials.html
98 lines (90 loc) · 2.67 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>bastian | socials</title>
<!-- stylesheet -->
<link rel="stylesheet" href="./styles/socials-style.css" />
<link rel="stylesheet" href="./styles/style.css" />
<!--stylesheet end-->
<!-- fontawesome for icons -->
<script
src="https://kit.fontawesome.com/8c89019b79.js"
crossorigin="anonymous"
></script>
<!-- fontawesome end -->
<!-- discord embed -->
<meta property="og:title" content="bastian" />
<meta
property="og:description"
content="A website for projects, socials & contact
"
/>
<meta property="og:image" content="/assets/pfp_neu_klein.png" />
<meta name="theme-color" content="#8BD2EC" />
<!-- discord embed end -->
<!-- icon -->
<link rel="icon" href="./assets/pfp_neu_rund.png" />
<!-- icon end -->
<!-- custom script -->
<script src="./scripts/index.js"></script>
<!-- custom script end -->
</head>
<body>
<a href="/">
<button class="button-home">home
</button>
</div>
</a>
<header class="header">
<img class="profile_pic" src="./assets/pfp_neu_rund.png" alt="" />
<p class="header_paragraph">hey, i'm bastian :)</p>
</header>
<div class="container-socials">
<a
class="container-buttons"
href="https://twitch.tv/knuddelghg"
target="_blank"
><button class="button-links">
<i class="fa-brands fa-twitch icon"></i> twitch
</button></a
>
<a
class="container-buttons"
href="https://youtube.com/@bastian42069"
target="_blank"
><button class="button-links">
<i class="fa-brands fa-youtube icon"></i> youtube
</button></a
>
<a
class="container-buttons"
href="https://x.com/@_bbastiann_"
target="_blank"
><button class="button-links">
<i class="fa-brands fa-twitter icon"></i> twitter
</button></a
>
<a
class="container-buttons"
href="https://www.instagram.com/bbastiann._/"
target="_blank"
><button class="button-links">
<i class="fa-brands fa-instagram icon"></i> instagram
</button></a
>
<a
class="container-buttons"
href="https://www.github.com/bastian-js"
target="_blank"
><button class="button-links">
<i class="fa-brands fa-github"></i> github
</button></a
>
</div>
<div class="copyright">
<p class="copyright-p">2024 © bastian</p>
</div>
</body>
</html>