-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
119 lines (109 loc) · 4.01 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
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>bastian</title>
<link rel="stylesheet" href="./styles/style.css" />
<link rel="stylesheet" href="./styles/index-style.css" />
<script
src="https://kit.fontawesome.com/e0ab8e764a.js"
crossorigin="anonymous"
></script>
<link rel="icon" href="./assets/pfp_neu_rund.png" />
<!-- discord embed -->
<meta property="og:title" content="bastian" />
<meta
property="og:description"
content="A website for projects & socials
"
/>
<meta property="og:image" content="/assets/pfp_neu_klein.png" />
<meta name="theme-color" content="#8BD2EC" />
<!-- discord embed end -->
<!-- javascript -->
<script src="./scripts/index.js"></script>
<!-- javascript end-->
</head>
<body>
<div class="container-links">
<a href="socials"><button class="button">socials</button></a>
<a href="projects"><button class="button">all projects</button></a>
<a href="tools"><button class="button">tools</button></a>
</div>
<header class="header">
<img class="profile_pic" src="./assets/pfp_neu_rund.png" alt="" />
<p class="header_paragraph" id="header_p">hey, i'm bastian :)</p>
</header>
<div class="box">
<div class="box-content">
<div class="symbols">
<div class="symbol">
<a href="https://github.com" target="_blank">
<i class="fa-brands fa-github icon"></i
></a>
</div>
<div class="symbol">
<a href="mailto:[email protected]">
<i class="fa-solid fa-envelope icon"></i>
</a>
</div>
</div>
<h1 class="box-title">about me</h1>
<p class="box-text">
hi, i'm bastian, a 19 year old student from austria. i'm interested in
programming, web development and design. i'm currently learning
javascript, python and css. i'm also a big fan of the game
<a href="https://www.minecraft.net">minecraft</a> and i'm playing it
since 2017. i'm also a big fan of the game
<a href="https://www.leagueoflegends.com/de-de/">league of legends</a>
and i'm playing it since 2023.
</p>
</div>
</div>
<div class="timeline">
<div class="timeline-event" data-year="April 2022 - Nov 2023">
<h3>started with html, css, js, discord.js</h3>
<p>
i started building my very first websites mostly for my discord bots
and personal websites. i learned how to built my own discord bots with
discord.js and javascript
</p>
</div>
<div class="timeline-event" data-year="Jan 2023 - Nov 2023">
<h3>giveaway bot</h3>
<p>
using discord.js i was building an open-source giveaway bot, that
could manage discord giveaways, you could handle your giveaways using
/-commands. the bot is
<a href="https://github.com/bastian-js/giveaway-bot"
>still on github</a
>
in the readme there is an instruction how to install your own instance
of the bot
</p>
</div>
<div class="timeline-event" data-year="September 2020 - Present">
<h3>c#, .net maui</h3>
<p>
through school i started with github, project management and learned
c# & .net maui what i'm still doing now
</p>
</div>
</div>
<div class="contact">
<h2 class="contact-heading">contact</h2>
<p class="contact-p">
you can contact me
<a href="mailto:[email protected]">using my email adress</a> or just
by clicking on button below
</p>
<a href="mailto:[email protected]"
><button class="contact-button button">contact me</button></a
>
</div>
<div class="copyright">
<p class="copyright-p">2024 © bastian</p>
</div>
</body>
</html>