-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (78 loc) · 2.63 KB
/
index.html
File metadata and controls
89 lines (78 loc) · 2.63 KB
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
<!DOCTYPE html>
<html>
<head>
<title>CodeTrainer</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Learning to code just got a whole lot easier." />
<link rel="stylesheet" href="public/style.css" />
<link rel="stylesheet" href="public/scrollbar.css" />
<script src="public/script.js" defer></script>
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link
rel="icon"
href="https://cdn.glitch.global/14daf2d0-0488-4b16-9d71-e95e4298f1e6/Logo1.png"
type="image/png"
/>
</head>
<body>
<div>
<nav class="main">
<!--
<a href="/contact">Contact Us</a>
<a href="/about">About Us</a>
-->
</nav>
</div>
<div class="center">
<img src="https://cdn.glitch.global/14daf2d0-0488-4b16-9d71-e95e4298f1e6/Logo1.png" alt="CodeTrainer Logo" style="
width: 70px;
margin: auto;
text-align: center;
"
data-aos="fade-up"
data-aos-duration="1500"
>
<h1 class="headline"
data-aos="fade-up"
data-aos-duration="1600">CodeTrainer</h1>
<h2 class="headline"
data-aos="fade-up"
data-aos-duration="1700">Learning to code just got a whole lot easier.</h2>
</div>
<div class="what" data-aos="fade-up"
data-aos-duration="1800">
<div class="whatcontent">
<p>Why CodeTrainer?</p>
<p>• Open Source <br>
• Simple <br>
• Hundreds of courses planned to be released
<br>
<br>
Only thing we need, is YOU! <br>
CodeTrainer needs developers, and you could be the next. <br> <br>
If you want to help out, you can join our <a href="https://discord.gg/tVgkzJagsh">Discord server</a> or Email support@codetrainer.xyz!
</p>
</div>
</div>
<div class="footer">
<p>
<a href="https://github.com/codetrainerapp" target="_blank">GitHub</a> | <a href="https://discord.gg/tVgkzJagsh" target="_blank">Discord</a> | <a href="https://twitter.com/codetrainerapp" target="_blank">Twitter</a>
</p>
<p id="partners">Partners and supporters:</p>
<a href="https://jusoft.dev/" target="_blank">
<img src="https://jusoft.dev/images/logo.png" alt="JuSoft Development" aria-label="JuSoft Development">
</a>
<a href="https://discord.gg/vbeHhpEQK5" target="_blank">
<img src="images/Periapsis.png" alt="Periapsis Studios" style="width: 50px; margin-bottom: 30px;" aria-label="Periapsis Studios">
</a>
</div>
</body>
</html>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
duration: 1500,
once: true,
});
</script>