-
Notifications
You must be signed in to change notification settings - Fork 0
/
impressum.html
266 lines (252 loc) · 10.4 KB
/
impressum.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>Impressum - Qreepex</title>
<!-- Favicons -->
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet" />
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet" />
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet" />
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet" />
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet" />
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet" />
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet" />
<!-- Status Bar -->
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<!-- META 2 -->
<meta name="theme-color" content="#3f43fd;" />
<!-- Include this to make the og:image larger -->
<meta name="twitter:card" content="summary_large_image" />
<!-- Discord Meta -->
<meta property="og:title" content="Home - qreepex" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://qreepex.xyz" />
<meta
property="og:description"
content="👋 Heyo, I'm qreepex. I am a young developer from Germany and I am specialized in programming around Discord.
I code for many YouTubers & Streamers, but also work on my own bigger projects, some of them verified by Discord."
/>
<!-- Facebook Meta Info -->
<meta property="og:site_name" content="qreepex" />
<!-- Google+ Meta Info -->
<meta itemprop="name" content="Home - qreepex" />
<meta
itemprop="description"
content="👋 Heyo, I'm qreepex. I am a young developer from Germany and I am specialized in programming around Discord.
I code for many YouTubers & Streamers, but also work on my own bigger projects, some of them verified by Discord."
/>
<!-- Twitter Meta Info -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:url" content="https://qreepex.xyz/" />
<meta name="twitter:title" content="Home - qreepex" />
<meta
name="twitter:description"
content="👋 Heyo, I'm qreepex. I am a young developer from Germany and I am specialized in programming around Discord.
I code for many YouTubers & Streamers, but also work on my own bigger projects, some of them verified by Discord."
/>
<!-- whatsapp -->
<meta data-react-helmet="true" charset="utf-8" />
<meta data-react-helmet="true" property="og:title" content="Home - qreepex" />
<meta
data-react-helmet="true"
property="og:description"
content="👋 Heyo, I'm qreepex. I am a young developer from Germany and I am specialized in programming around Discord.
I code for many YouTubers & Streamers, but also work on my own bigger projects, some of them verified by Discord."
/>
<meta
data-react-helmet="true"
name="description"
content="👋 Heyo, I'm qreepex. I am a young developer from Germany and I am specialized in programming around Discord.
I code for many YouTubers & Streamers, but also work on my own bigger projects, some of them verified by Discord."
/>
</head>
<style>
.qreepex-accent1 {
color: rgb(92, 100, 244);
}
.qreepex-accent2 {
color: rgb(50, 62, 194);
}
.btn-qreepx {
color: black;
background-color: rgb(0, 208, 245);
}
::-webkit-scrollbar {
width: 0.45rem;
}
::-webkit-scrollbar-thumb {
background: linear-gradient(135deg, rgb(92, 100, 244), rgb(92, 100, 190));
border-radius: 3px;
}
::-webkit-scrollbar-track {
background: transparent;
}
#cookieConsent {
background-color: rgba(20, 20, 20, 0.8);
min-height: 26px;
font-size: 14px;
text-align: center;
color: #ccc;
line-height: 26px;
padding: 30px;
font-family: "Trebuchet MS", Helvetica, sans-serif;
position: fixed;
bottom: 0;
left: 0;
right: 0;
display: none;
z-index: 9999;
}
#cookieConsent a {
color: #4b8ee7;
text-decoration: none;
}
#closeCookieConsent {
display: inline-block;
cursor: pointer;
height: 50px;
width: 20px;
font-weight: bold;
}
#closeCookieConsent:hover {
color: #fff;
}
#cookieConsent a.cookieConsentOK {
background-color: rgb(0, 208, 245);
color: #000;
display: inline-block;
border-radius: 5px;
padding: 0 20px;
cursor: pointer;
margin: 0 60px 0 10px;
}
#cookieConsent a.cookieConsentOK:hover {
background-color: rgb(0, 208, 245);
}
</style>
<body style="background-color: #1c242c; color: white" id="top">
<nav
class="navbar sticky-top navbar-expand-md py-3 navbar-dark"
style="background-color: #283444; font-family: 'Andika New Basic'"
>
<div class="container-fluid">
<a class="navbar-brand fs-3" href="https://qreepex.xyz">Qreepex</a>
<button
class="navbar-toggler btn"
type="button"
style="background-color: #2e3a4b"
data-bs-toggle="collapse"
data-bs-target="#navbarToggler"
aria-controls="navbarTogglerDemo01"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="bi bi-chevron-double-down shadow-lg"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarToggler">
<div class="navbar-nav">
<a class="nav-link active fs-5" href="https://qreepex.xyz/">Home</a>
<a class="nav-link active fs-5" href="https://qreepex.xyz/links">Links</a>
<a class="nav-link active fs-5" href="https://qreepex.xyz/#projects">Projekte</a>
<a class="nav-link active fs-5" href="https://qreepex.xyz/contact">Kontakt</a>
</div>
</div>
</div>
</nav>
<div class="container-fluid" style="font-family: 'Exo'">
<div class="row pt-5">
<div class="col-12 fw-bold text-center">
<h1>Impressum</h1>
</div>
<div
class="col-8 offset-2 pt-5"
style="font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif"
>
<h2>Angaben gemäß § 5 TMG</h2>
<p>
Ben Schiemann<br />
Reinbeker Weg 70<br />
21465 Wentorf
</p>
<h2>Kontakt</h2>
<p>
Telefon: +49 1516 4877269<br />
E-Mail: [email protected]
</p>
<h2>Redaktionell verantwortlich</h2>
<p>
Ben Schiemann<br />
Reinbeker Weg 70<br />
21465 Wentorf
</p>
<h2>EU-Streitschlichtung</h2>
<p>
Die Europäische Kommission stellt eine Plattform zur Online-Streitbeilegung (OS) bereit:
<a href="https://ec.europa.eu/consumers/odr/" target="_blank" rel="noopener noreferrer"
>https://ec.europa.eu/consumers/odr/</a
>.<br />
Unsere E-Mail-Adresse finden Sie oben im Impressum.
</p>
<h2>Verbraucher­streit­beilegung/Universal­schlichtungs­stelle</h2>
<p>
Wir sind nicht bereit oder verpflichtet, an Streitbeilegungsverfahren vor einer
Verbraucherschlichtungsstelle teilzunehmen.
</p>
<h2 id="bildernachweis">Bildernachweis</h2>
<p>Die Bilder, Fotos und Grafiken auf dieser Webseite sind urheberrechtlich geschützt.</p>
<p>Die Bilderrechte liegen bei den folgenden Fotografen und Unternehmen:</p>
<ul>
<li>Discord Inc.</li>
<li>YouTube LLC.</li>
<li>Twitch</li>
<li>GitHub Inc.</li>
<li>Twitter Inc.</li>
</ul>
<p>Alle Texte sind urheberrechtlich geschützt.</p>
</div>
</div>
</div>
<footer class="text-center" style="background-color: #283444">
<section class="d-flex justify-content-center p-4 border-bottom">
<div class="row justify-content-center">
<a href="https://qreepex.xyz/youtube" class="col me-4 qreepex-accent1"><i class="bi bi-youtube"></i></a>
<a href="https://qreepex.xyz/twitter" class="col me-4 qreepex-accent1"><i class="bi bi-twitter"></i></a>
<a href="https://qreepex.xyz/twitch" class="col me-4 qreepex-accent1"><i class="bi bi-twitch"></i></a>
<a href="https://qreepex.xyz/github" class="col me-4 qreepex-accent1"><i class="bi bi-github"></i></a>
<a href="https://qreepex.xyz/dc" class="col me-4 qreepex-accent1"><i class="bi bi-discord"></i></a>
</div>
</section>
<div class="text-center p-4" style="background-color: rgba(0, 0, 0, 0.05)">
Made by <a class="text-reset" style="text-decoration: none" href="https://qreepex.xyz/">qreepex</a> with
<a
class="text-reset"
style="text-decoration: none"
href="https://www.just-fucking-google.it?s=bootstrap&e=fingerxyz"
>Bootstrap</a
>
<br />
Copyright © <a class="text-reset" style="text-decoration: none" href="https://qreepex.xyz/secret">2022</a>
</div>
</footer>
<script src="assets/vendor/aos/aos.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script src="assets/vendor/purecounter/purecounter.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<script src="assets/vendor/jquery/jquery.min.js" type="text/javascript"></script>
<script>
AOS.init();
</script>
<script async defer src="https://r1.delivery.services.eazyautodelete.xyz/latest.js"></script>
<noscript
><img
src="https://r1.delivery.services.eazyautodelete.xyz/verycool.gif"
alt=""
referrerpolicy="no-referrer-when-downgrade"
/></noscript>
</body>
</html>