-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
470 lines (411 loc) · 16.8 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
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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="icon" href="favicon.png" />
<title>ProgrammChest</title>
<meta name="Description" content="Die Originelle Website zum Programmier Discord Server">
<meta name="robots" content="Die Originelle Website zum Programmier Discord Server" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="KeyWords"
content="coding, programmchest, programmieren lernen auf deutsch, deutsch, german, discord, java, programmieren lernen schnell und einfach, unity, unreal, python, c#, html, css, js">
<!-- iOS meta tags & icons -->
<link rel="apple-touch-icon" href="FaviconMobile.png">
<!-- Favicon -->
<link rel="icon" type="image/png" href="FaviconMobile.png"/>
<!-- normalize css -->
<link rel="stylesheet" href="resources/normalize.css">
<!-- font -->
<link rel="stylesheet" href="resources/font.css">
<!-- font awesome cdn -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA=="
crossorigin="anonymous" />
<!-- magnific popup -->
<link rel="stylesheet" href="resources/Magnific-Popup-master/dist/magnific-popup.css">
<!-- owl carousel -->
<link rel="stylesheet" href="resources/OwlCarousel2-2.3.4/dist/assets/owl.carousel.css">
<link rel="stylesheet" href="resources/OwlCarousel2-2.3.4/dist/assets/owl.theme.default.css">
<!-- animate css -->
<link rel="stylesheet" href="resources/animate.css-main/animate.css">
<!-- custom (main) css -->
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!-- header -->
<header class="header" id="intro">
<nav class="navbar">
<div class="container">
<div class="brand-and-toggler">
<a href="https://programm-chest.dev" class="navbar-brand">
ProgrammChest
</a>
<button type="button" class="navbar-toggler" id="navbar-toggler">
<i class="fas fa-bars"></i>
</button>
</div>
<div class="navbar-collapse">
<ul class="navbar-nav">
<li class="nav-item">
<a href="#intro" class="nav-link">Home</a>
</li>
<li class="nav-item">
<a href="#feature" class="nav-link">Features</a>
</li>
<li class="nav-item">
<a href="#team" class="nav-link">team</a>
</li>
<li class="nav-item">
<a href="#testimonial" class="nav-link">Meinungen</a>
</li>
<li class="nav-item">
<a href="#contact" class="nav-link">Kontakt</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="hero-div center container">
<h1><img src=''> Join ProgrammChest</h1>
<p class="animate__animated animate__fadeInUp animate__slow">Einer der größten Programmier Discord Server</p>
<div class="hero-btns animate__animated animate__fadeInUp animate__slow">
<a href="#feature"><button type="button" class="btn-trans">Mehr Erfahren</button></a>
<a href="https://invite.programm-chest.dev"><button type="button" class="btn-white">Join Now!</button></a>
</div>
</div>
</header>
<!-- end of header -->
<!-- detail section -->
<section class="detail" id="feature">
<div class="container">
<div class="row">
<div class="detail-item wow animate__animated animate__fadeInLeft animate__slow">
<span><i class="fas fa-mobile"></i></span>
<h2>Überall erreichbar</h2>
<div class="line"></div>
<p class="text">Durch Discord bist du mit deinen Mobilen Geräten immer auf ProgrammChest erreichbar. Wenn du
grad im Zug sitzt und eine Frage hast, Frag einfach gleich!</p>
</div>
<div class="detail-item wow animate__animated animate__fadeInUp animate__s">
<span><i class="fas fa-code"></i></span>
<h2>Programmiersprachen</h2>
<div class="line"></div>
<p class="text">Die Anzahl unserer Programmiersprachen bei denen wir helfen können ist SEHR Groß. Du erhältst
meistens eine Hilfreiche Antwort.</p>
</div>
<div class="detail-item wow animate__animated animate__fadeInRight animate__slow">
<span><i class="fas fa-bell"></i></span>
<h2>24 Stunden Support</h2>
<div class="line"></div>
<p class="text">Durch unsere Große Community erhätst du schnelle Antworten, kannst immer fragen außerdem
unterstützen wir Voice Support.</p>
</div>
</div>
</div>
</section>
<!-- end of detial section -->
<!-- features section -->
<!-- end of features section -->
<!-- sample video section -->
<section class="video">
<div class="container">
<a class="center popup-youtube" href="https://www.youtube.com/watch?v=PBWRADbqNtU">
<i class="fas fa-play"></i>
</a>
<h2 class="wow animate__animated animate__fadeInUp animate__slow">Tutorials</h2>
<p class="wow animate__animated animate__fadeInUp animate__slow">Du kannst auf ProgrammChest bei Umfragen für ein
neues Video auf den Kanälen abstimmen.</p>
</div>
</section>
<!-- end of sample video section -->
<!-- team section -->
<section class="team" id="team">
<div class="container">
<div class="title">
<h2 class="wow animate__animated animate__bounceIn animate__slow">Das Team</h2>
<p class="text">“Talent gewinnt Spiele, aber Teamwork und Intelligenz gewinnt Meisterschaften.”</p>
</div>
<div class="row owl-carousel owl-theme wow animate__animated animate__fadeInUp animate__slow">
<div class="team-item">
<div class="team-img">
<img
src="https://cdn.discordapp.com/avatars/531440361986588682/a_d6470f05d4fa75afc86c5564c882355a.gif?size=128"
alt="">
<div class="team-icons">
<a href="https://discord.com/channels/543079984223223808/554310029243711497" class="center">
<i class="fab fa-discord"></i>
</a>
</div>
</div>
<div class="team-info">
<h3>FreshVlay</h3>
<span>Admin</span>
</div>
</div>
<div class="team-item">
<div class="team-img">
<img
src="https://cdn.discordapp.com/avatars/336889257488547841/f124bce312b3548b1a8e356bf6bddf11.png?size=128"
alt="">
<div class="team-icons">
<a href="#" class="center">
<i class="fab fa-discord"></i>
</a>
</div>
</div>
<div class="team-info">
<h3>CodeDoctor</h3>
<span>Admin</span>
</div>
</div>
<div class="team-item">
<div class="team-img">
<img
src="https://cdn.discordapp.com/avatars/530450131179405344/b51e5cf9e1dbdffb2f711c415b139fb6.png?size=128"
alt="">
<div class="team-icons">
<a href="https://discord.com/channels/543079984223223808/554310029243711497" class="center">
<i class="fab fa-discord"></i>
</a>
</div>
</div>
<div class="team-info">
<h3>Rapha</h3>
<span>Bot-Developer</span>
</div>
</div>
<div class="team-item">
<div class="team-img">
<img
src="https://cdn.discordapp.com/avatars/737996127978127381/ee71f4a84fe5f32cc36e1c72b1fab0f9.png?size=128"
alt="">
<div class="team-icons">
<a href="https://discord.com/channels/543079984223223808/554301432740839476" class="center">
<i class="fab fa-discord"></i>
</a>
</div>
</div>
<div class="team-info">
<h3>luhan</h3>
<span>Moderator</span>
</div>
</div>
<div class="team-item">
<div class="team-img">
<img
src="https://cdn.discordapp.com/avatars/201048039970832385/4d0e21382f81da0e415c9e09c9b9b5f8.png?size=128"
alt="">
<div class="team-icons">
<a href="https://discord.com/channels/543079984223223808/554364677992218645/802331609319079987"
class="center">
<i class="fab fa-discord"></i>
</a>
</div>
</div>
<div class="team-info">
<h3>BasicBit</h3>
<span>Moderator</span>
</div>
</div>
<div class="team-item">
<div class="team-img">
<img
src="https://cdn.discordapp.com/avatars/622071305356705812/af47ace75c19134bd8663fd137c0ee02.png?size=128"
alt="">
<div class="team-icons">
<a href="https://discord.com/channels/543079984223223808/544166199555129356/801361058463088650"
class="center">
<i class="fab fa-discord"></i>
</a>
</div>
</div>
<div class="team-info">
<h3>TrashGaming</h3>
<span>Supporter</span>
</div>
</div>
<div class="team-item">
<div class="team-img">
<img
src="https://cdn.discordapp.com/avatars/632560961772978176/a_d6b2a0f6705c4317489167481f18e23b.gif?size=128"
alt="">
<div class="team-icons">
<a href="https://discord.com/channels/543079984223223808/544166199555129356/801361058463088650"
class="center">
<i class="fab fa-discord"></i>
</a>
</div>
</div>
<div class="team-info">
<h3>Gamer_4016</h3>
<span>Supporter</span>
</div>
</div>
</div>
</section>
<!-- end of team section -->
<!-- faq section -->
<section class="faq">
<div class="container">
<div class="title">
<h2 class="wow animate__animated animate__bounceIn animate__slow">Hast du Fragen?</h2>
<p class="text">Die meist gestellten Fragen, schnell zusammengefasst.</p>
</div>
<div class="row wow animate__animated animate__fadeInUp animate__slow">
<div class="faq-item">
<div class="faq-head">
<h3>Welche Programmier/Scriptsprachen unterstützen wir?</h3>
<span><i class="fas fa-plus"></i></span>
</div>
<div class="faq-content">
<p class="text">Wir unterstützen eigentlich jede Programmiersprache.</p>
<p class="text">Java, Python, C#, C++, HTML, CSS, Javascript, Ruby, usw...</p>
</div>
</div>
<div class="faq-item">
<div class="faq-head">
<h3>Welche Themenbereiche unterstützen wir?</h3>
<span><i class="fas fa-plus"></i></span>
</div>
<div class="faq-content">
<p class="text">Gamedevelopment, Web-Design, App-Creation oder Plugindevelopment eigentlich alles.</p>
<p class="text"></p>
</div>
</div>
<div class="faq-item">
<div class="faq-head">
<h3>Was wird bei euch am meisten gefragt?</h3>
<span><i class="fas fa-plus"></i></span>
</div>
<div class="faq-content">
<p class="text">Mhm, das ist eine gute Frage. Ich denke das wir am meisten Fragen über Python bekommen. Aber
es ist unterschiedlich!</p>
<p class="text"></p>
</div>
</div>
</div>
</div>
</section>
<!-- end of faq section -->
<!-- testimonial section -->
<section class="testimonial" id="testimonial">
<div class="container">
<div class="title">
<h2 class="wow animate__animated animate__bounceIn animate__slow">Die Meinung unserer Community.</h2>
<p class="text">COMMUNITY - Die fast nackte Wahrheit</p>
</div>
<div class="row owl-carousel owl-theme wow animate__animated animate__fadeInUp animate__slow">
<div class="testimonial-item">
<div class="testimonial-img">
<img
src="https://cdn.discordapp.com/avatars/737996127978127381/ee71f4a84fe5f32cc36e1c72b1fab0f9.png?size=128"
alt="">
</div>
<p>Der Server ist ziemlich aktiv und man bekommt schnell Antworten und Hilfe bei einer großen Weite von
Themengebieten im Bereich Programmieren.</p>
<span>Luhan</span>
</div>
<div class="testimonial-item">
<div class="testimonial-img">
<img
src="https://p7.hiclipart.com/preview/842/992/26/discord-computer-servers-teamspeak-discord-icon-thumbnail.jpg"
alt="">
</div>
<p>Tolle Community und schnelle Hilfe. Grade ein Projekt mit eurer Hilfe fertiggestellt.</p>
<span>Julian_1879</span>
</div>
<div class="testimonial-item">
<div class="testimonial-img">
<img
src="https://p7.hiclipart.com/preview/842/992/26/discord-computer-servers-teamspeak-discord-icon-thumbnail.jpg"
alt="">
</div>
<p>Ein sehr netter, überschaubarer Server ohne unnötigen Schnickschnack mit seinem Thema im Fokus.
Die Leute sind freundlich und man knüpft neue Kontakte.</p>
<span>Timbervers</span>
</div>
<div class="testimonial-item">
<div class="testimonial-img">
<img
src="https://cdn.discordapp.com/avatars/522852084412841986/0ca866fad80e72673f06030ce1ddcc52.png?size=128"
alt="">
</div>
<p>Der Server ist sehr gut aufgebaut
Und man bekommt auch gute und schnelle Hilfe, wenn gebraucht.
Auch kann man sehr gut mit anderen über die Themen reden.
Das Team ist auch sehr nett.
Allgemein der Server und seine Leute sind sehr nett.</p>
<span>Wolf_Luna</span>
</div>
<div class="testimonial-item">
<div class="testimonial-img">
<img
src="https://cdn.discordapp.com/avatars/518434904820809736/a_ace6f67edc81f72d91d27e7d16ab463c.gif?size=128"
alt="">
</div>
<p>ProgrammChest ist ne mega nice Community, die dir immer helfen kann, wenn du Fragen hast. Es gibt viele Kanäle für fast jedes Thema. Alles in allem ein TOP Discord Server!</p>
<span>MCTzOCK</span>
</div>
</div>
</div>
</section>
<!-- end of testimonial section -->
<!-- contact section -->
<section class="contact" id="contact">
<div class="container">
<div class="title">
<h2 class="wow animate__animated animate__bounceIn animate__slow">Kontaktiere uns</h2>
<p class="text">"Wir freuen uns über eure Fragen!"</p>
</div>
<div class="row wow animate__animated animate__fadeInUp animate__slow">
<div class="contact-left">
<h2>Sende hier deine Nachricht</h2>
<form action="https://formspree.io/f/xnqowbye" method="POST">
<input type="text" name="name" class="form-control" placeholder="Name">
<input type="email" name="_replyto" class="form-control" placeholder="Email">
<textarea type="text" name="message" placeholder="Nachricht" rows="6"></textarea>
<button type="submit" class="submit-btn">Abschicken</button>
</form>
</div>
</div>
</section>
<!-- end of contact section -->
<!-- footer -->
<footer class="footer center">
<div class="container">
<p class="text">Copyright © ProgrammChest | Alle Rechte vorbehalten <p>Wurde</p><h1 id="count">0</h1><p>mal besucht</p></p>
<div class="footer-links">
<a href="https://invite.programm-chest.dev" class="center">
<i class="fab fa-discord"></i>
</a>
<a href="impressum.html" class="center">
<i class="fas fa-info-circle"></i>
</a>
<script>
const countEl = document.getElementById('count');
updateVisitCount();
function updateVisitCount() {
fetch('https://api.countapi.xyz/update/programmchest/development/?amount=1')
.then(res => res.json())
.then(res => {
countEl.innerHTML = res.value;
})
}
</script>
</div>
</div>
</footer>
<!-- end of footer -->
<!-- jQuery -->
<script src="resources/jquery-3.5.1.js"></script>
<!-- magnific popup -->
<script src="resources/Magnific-Popup-master/dist/jquery.magnific-popup.js"></script>
<!-- owl carousel -->
<script src="resources/OwlCarousel2-2.3.4/dist/owl.carousel.js"></script>
<!-- wow js -->
<script src="resources/WOW-master/dist/wow.js"></script>
<!-- custom js -->
<script src="js/script.js"></script>
</body>
</html>