forked from LiquidRekto/kodestudio.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
405 lines (402 loc) · 26.7 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<title>KodePage</title>
<link rel="icon" type="image/png" sizes="200x200" href="assets/img/favicon.png">
<link rel="icon" type="image/png" sizes="200x200" href="assets/img/favicon.png">
<link rel="icon" type="image/png" sizes="200x200" href="assets/img/favicon.png">
<link rel="icon" type="image/png" sizes="200x200" href="assets/img/favicon.png">
<link rel="icon" type="image/png" sizes="200x200" href="assets/img/favicon.png">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto+Condensed">
<link rel="stylesheet" href="assets/fonts/font-awesome.min.css">
<link rel="stylesheet" href="assets/fonts/ionicons.min.css">
<link rel="stylesheet" href="assets/fonts/material-icons.min.css">
<link rel="stylesheet" href="assets/css/Boostrap-Tabs.css">
<link rel="stylesheet" href="assets/css/Contact-Form-Clean.css">
<link rel="stylesheet" href="assets/css/Features-Boxed.css">
<link rel="stylesheet" href="assets/css/Footer-Clean.css">
<link rel="stylesheet" href="assets/css/Highlight-Blue.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.2.0/aos.css">
<link rel="stylesheet" href="assets/css/MUSA_timeline-1.css">
<link rel="stylesheet" href="assets/css/MUSA_timeline.css">
<link rel="stylesheet" href="assets/css/Navigation-with-Button.css">
<link rel="stylesheet" href="assets/css/Products-UI.css">
<link rel="stylesheet" href="assets/css/Projects-Horizontal.css">
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="stylesheet" href="assets/css/Team-Boxed.css">
</head>
<body class="text-center" style="color: rgb(46,72,98);">
<nav class="navbar navbar-light navbar-expand-md sticky-top bounce animated navigation-clean-button">
<div class="container"><a class="navbar-brand" href="https://kodelang.dev">Kode</a><button data-toggle="collapse" class="navbar-toggler" data-target="#navcol-1"><span class="sr-only">Toggle navigation</span><span class="navbar-toggler-icon"></span></button>
<div class="collapse navbar-collapse"
id="navcol-1">
<ul class="nav navbar-nav mr-auto">
<li class="nav-item" role="presentation"><a class="nav-link active" href="https://kodelang.dev">Home</a></li>
<li class="nav-item" role="presentation"><a class="nav-link" href="https://kodelang.dev/platform.html">Platform</a></li>
<li class="nav-item" role="presentation"><a class="nav-link" href="https://kodelang.dev/docs.html">Docs</a></li>
<li class="nav-item" role="presentation"><a class="nav-link" href="https://www.kodelang.dev/community.html">Community</a></li>
<li class="nav-item" role="presentation"><a class="nav-link" href="https://kodelang.dev/contact.html">Contact</a></li>
<li class="nav-item" role="presentation"><a class="nav-link" href="https://kodelang.dev/donate.html">Donate</a></li>
</ul><span class="navbar-text actions"> <a class="btn btn-light action-button" role="button" href="https://www.github.com/kodestudio" style="margin-right: 10px;">GitHub Repo</a><a class="btn btn-light action-button" role="button" href="https://kodelang.dev/get-started.html">Get Started</a></span></div>
</div>
</nav>
<div class="text-center">
<div class="container">
<div class="row">
<div class="col-md-6 text-left">
<h1 class="display-4 text-left" data-aos="fade" style="font-size: 57px;font-family: 'Roboto Condensed', sans-serif;margin-top: 151px;">Make great app with Kode</h1>
<p class="text-left bounce animated" style="font-size: 22px;font-family: 'Roboto Condensed', sans-serif;">Kode is free and open source platform make from FPC and LCL project for building powerful applications.<br></p><a class="btn btn-light action-button" role="button" href="https://www.github.com/kodestudio" style="background-color: rgb(33,130,227);color: rgb(254,255,255);">Getting Started</a>
<a
class="btn btn-light action-button" role="button" href="https://www.github.com/kodestudio" style="background-color: rgb(33,130,227);color: rgb(250,253,255);margin-left: 15px;">GitHub Repo</a><a class="btn btn-light action-button" role="button" href="https://kodelang.dev/donate" style="background-color: rgb(33,130,227);color: rgb(255,255,255);margin-left: 15px;">Donate</a></div>
<div class="col-md-6">
<picture><img class="img-fluid" data-bs-hover-animate="pulse" src="assets/img/app.png"></picture>
</div>
</div>
</div>
</div>
<div style="margin-top: 50px;margin-bottom: 50px;">
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<h1 class="text-center" style="padding-top: 25px;padding-bottom: 25px;">Kode brilliant for</h1>
</div>
</div>
<div class="row d-flex d-sm-flex justify-content-center justify-content-sm-center">
<div class="col-md-3" style="max-width: 75%;min-width: 33.3333%;">
<div class="card border rounded shadow">
<div class="text-center border rounded shadow" style="background-color: rgba(249,114,66,0);"><img class="img-fluid" src="assets/img/native.png"></div>
<div class="card-body text-center">
<h4 class="card-title">Native Development</h4>
</div>
</div>
</div>
<div class="col-md-3" style="max-width: 75%;min-width: 33.3333%;">
<div class="card border rounded shadow">
<div class="text-center border rounded shadow" style="background-color: rgba(0,128,255,0);"><img class="img-fluid" src="assets/img/web.png"></div>
<div class="card-body text-center">
<h4 class="card-title">Web Development</h4>
</div>
</div>
</div>
<div class="col-md-3" style="max-width: 75%;min-width: 33.3333%;">
<div class="card border rounded shadow">
<div class="text-center border rounded shadow" style="background-color: rgba(249,221,22,0);"><img class="img-fluid" src="assets/img/hibrid.png"></div>
<div class="card-body text-center">
<h4 class="card-title">Hibrid Development</h4>
</div>
</div>
</div>
</div>
<div class="row d-flex d-sm-flex justify-content-center justify-content-sm-center">
<div class="col-md-3" style="max-width: 75%;min-width: 33.3333%;">
<div class="card border rounded shadow">
<div class="text-center border rounded shadow" style="background-color: rgba(249,114,66,0);"><img class="img-fluid" src="assets/img/server.png"></div>
<div class="card-body text-center">
<h4 class="card-title">Server Backend</h4>
</div>
</div>
</div>
<div class="col-md-3" style="max-width: 75%;min-width: 33.3333%;margin-top: 0px;">
<div class="card border rounded shadow">
<div class="text-center border rounded shadow" style="background-color: rgba(0,128,255,0);"><img class="img-fluid" src="assets/img/iot.png"></div>
<div class="card-body text-center">
<h4 class="card-title">Internet of Thing</h4>
</div>
</div>
</div>
<div class="col-md-3" style="max-width: 75%;min-width: 33.3333%;margin-top: 0px;">
<div class="card border rounded shadow">
<div class="text-center border rounded shadow" style="background-color: rgba(249,221,22,0);"><img class="img-fluid" src="assets/img/ai.png"></div>
<div class="card-body text-center">
<h4 class="card-title">Artificial Intelligence</h4>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="features-boxed">
<div class="container">
<div class="intro">
<h2 class="text-center">Features </h2>
</div>
<div class="row justify-content-center shake animated features">
<div class="col-sm-6 col-md-5 col-lg-4 item">
<div class="box"><i class="material-icons icon">code</i>
<h3 class="name">Easy to code</h3>
<p class="description">KodeLang and Pascal are the programming languages used to power Kode. Both of them are not difficult to experience and learn.<br></p>
</div>
</div>
<div class="col-sm-6 col-md-5 col-lg-4 item">
<div class="box"><i class="material-icons icon">swap_vertical_circle</i>
<h3 class="name">Save time, money,...</h3>
<p class="description">From one base code, Kode can be built and run on many platforms. This saves money, time and manpower.</p>
</div>
</div>
<div class="col-sm-6 col-md-5 col-lg-4 item">
<div class="box"><i class="material-icons icon">tag_faces</i>
<h3 class="name">Beutiful UI/UX</h3>
<p class="description">The interface and user experience of Kode-making applications are friendly and modern, in line with the design trend.</p>
</div>
</div>
<div class="col-sm-6 col-md-5 col-lg-4 item">
<div class="box"><i class="material-icons icon">widgets</i>
<h3 class="name">Diverse package</h3>
<p class="description">Packages are used for many purposes. In addition the community also contributes a lot of packages.</p>
</div>
</div>
<div class="col-sm-6 col-md-5 col-lg-4 item">
<div class="box"><i class="material-icons icon">access_time</i>
<h3 class="name">Fast</h3>
<p class="description">The software made by Kode is extremely fast operating speed on many platforms. This gives the best user experience.</p>
</div>
</div>
<div class="col-sm-6 col-md-5 col-lg-4 item">
<div class="box"><i class="fa fa-simplybuilt icon"></i>
<h3 class="name"><strong>Friendly tools</strong></h3>
<p class="description">Kode provides friendly software development tools. There are both CLI and GUI.</p>
</div>
</div>
</div>
</div>
</div>
<div class="projects-horizontal">
<div class="container swing animated">
<div class="intro">
<h2 class="text-center"><strong>Salient features</strong><br></h2>
</div>
<div class="row projects">
<div class="col-sm-6 item">
<div class="row">
<div class="col-md-12 col-lg-5"><a href="#"><img class="img-fluid" src="assets/img/cli.png"></a></div>
<div class="col">
<h3 class="name">Command Line Tools</h3>
<p class="description">Interact with CLI - fast and convenient<br></p>
</div>
</div>
</div>
<div class="col-sm-6 item">
<div class="row">
<div class="col-md-12 col-lg-5"><a href="#"><img class="img-fluid" src="assets/img/ide.png"></a></div>
<div class="col">
<h3 class="name">Multiple IDE<br></h3>
<p class="description">You can use multiple IDEs to write Kode source code. The community is currently developing plugins for the IDE<br></p>
</div>
</div>
</div>
<div class="col-sm-6 item">
<div class="row">
<div class="col-md-12 col-lg-5"><a href="#"><img class="img-fluid" src="assets/img/js.png"></a></div>
<div class="col">
<h3 class="name">JS and Kode</h3>
<p class="description">Kode is not only compatible with JS, but also compatible with most platforms for JS. If you are from JS then you will enjoy this.<br></p>
</div>
</div>
</div>
<div class="col-sm-6 item">
<div class="row">
<div class="col-md-12 col-lg-5"><a href="#"><img class="img-fluid" src="assets/img/lang.png"></a></div>
<div class="col">
<h3 class="name">Other language</h3>
<p class="description">Kode can combine many other languages. This increases the power and diversity.<br></p>
</div>
</div>
</div>
<div class="col-sm-6 item">
<div class="row">
<div class="col-md-12 col-lg-5"><a href="#"><img class="img-fluid" src="assets/img/c2kode.png"></a></div>
<div class="col">
<h3 class="name">Convert C to KodeLang</h3>
<p class="description">Can switch between the C language library to KodeLang. This increases the Kode power up. <br></p>
</div>
</div>
</div>
<div class="col-sm-6 item">
<div class="row">
<div class="col-md-12 col-lg-5"><a href="#"><img class="img-fluid" src="assets/img/getter.png"></a></div>
<div class="col">
<h3 class="name">Kode Getter</h3>
<p class="description">Help Kode interact with the Server, download and install packages, display package information and lists from channels.<br></p>
</div>
</div>
</div>
<div class="col-sm-6 item">
<div class="row">
<div class="col-md-12 col-lg-5"><a href="#"><img class="img-fluid" src="assets/img/database.png"></a></div>
<div class="col">
<h3 class="name">Database with Kode</h3>
<p class="description">Databases are used to store data, information, ... With Kode you can choose many different types of databases for your application.<br></p>
</div>
</div>
</div>
<div class="col-sm-6 item">
<div class="row">
<div class="col-md-12 col-lg-5"><a href="#"><img class="img-fluid" src="assets/img/live.png"></a></div>
<div class="col">
<h3 class="name">Kode Live</h3>
<p class="description">Quick interaction with Kode through Live. In Live, you just need to press different buttons on the keyboard to control Kode to do everything.<br></p>
</div>
</div>
</div>
</div>
</div>
</div>
<div></div>
<div style="margin-top: 50px;margin-bottom: 50px;">
<div class="container-fluid">
<div class="row">
<div class="col-md-12 tada animated">
<h2 class="text-center" style="padding-top: 25px;padding-bottom: 25px;color: rgb(49,52,55);">Kode component and tools</h2>
</div>
</div>
<div class="row d-flex d-sm-flex justify-content-center justify-content-sm-center">
<div class="col-md-3" style="max-width: 75%;min-width: 33.3333%;">
<div class="card border rounded shadow">
<div class="text-center border rounded shadow invisible" style="background-color: rgba(249,114,66,0);"><img class="img-fluid" src="assets/img/favicon.png"></div>
<div class="card-body text-center">
<h4 class="card-title">KodePas</h4>
<h6 class="text-muted card-subtitle mb-2">The SDK for Kode</h6><button class="btn btn-primary active btn-sm text-center actions" type="button" style="background-color: #4396ee;color: rgb(255,255,255);filter: blur(0px) brightness(100%) contrast(100%) grayscale(0%) hue-rotate(0deg);font-size: 19px;">See more</button></div>
</div>
</div>
<div class="col-md-3" style="max-width: 75%;min-width: 33.3333%;color: rgb(214,217,221);">
<div class="card border rounded shadow">
<div class="text-center border rounded shadow invisible" style="background-color: rgba(0,128,255,0);"><img class="img-fluid" src="assets/img/favicon.png"></div>
<div class="card-body text-center">
<h4 class="card-title" style="color: rgb(46,72,98);">KodeLang</h4>
<h6 class="text-muted card-subtitle mb-2">New programing language form Pascal</h6><button class="btn btn-light active" type="button" style="background-color: #4396ee;color: rgb(255,255,255);">See more</button></div>
</div>
</div>
<div class="col-md-3" style="max-width: 75%;min-width: 33.3333%;">
<div class="card border rounded shadow">
<div class="text-center border rounded shadow invisible" style="background-color: rgba(249,221,22,0);"><img class="img-fluid" src="assets/img/favicon.png"></div>
<div class="card-body text-center">
<h4 class="card-title">Kode Compiler</h4>
<h6 class="text-muted card-subtitle mb-2">The compiler for KodeLang and Pascal</h6><button class="btn btn-light active" type="button" style="background-color: #4396ee;color: rgb(255,255,255);">See more</button></div>
</div>
</div>
</div>
<div class="row d-flex d-sm-flex justify-content-center justify-content-sm-center" style="margin-top: 0px;">
<div class="col-md-3" style="max-width: 75%;min-width: 33.3333%;">
<div class="card border rounded shadow">
<div class="text-center border rounded shadow invisible" style="background-color: rgba(249,114,66,0);"><img class="img-fluid" src="assets/img/favicon.png"></div>
<div class="card-body text-center">
<h4 class="card-title">Kode Studio</h4>
<h6 class="text-muted card-subtitle mb-2">Smart IDE for Kode</h6><button class="btn btn-light active" type="button" style="background-color: #4396ee;color: rgb(255,255,255);">See more</button></div>
</div>
</div>
<div class="col-md-3" style="max-width: 75%;min-width: 33.3333%;color: rgb(214,217,221);">
<div class="card border rounded shadow">
<div class="text-center border rounded shadow invisible" style="background-color: rgba(0,128,255,0);"><img class="img-fluid" src="assets/img/favicon.png"></div>
<div class="card-body text-center">
<h4 class="card-title" style="color: rgb(46,72,98);">Kode Store</h4>
<h6 class="text-muted card-subtitle mb-2">Where to publish the app make with Kode</h6><button class="btn btn-light active" type="button" style="background-color: #4396ee;color: rgb(255,255,255);">See more</button></div>
</div>
</div>
<div class="col-md-3" style="max-width: 75%;min-width: 33.3333%;">
<div class="card border rounded shadow">
<div class="text-center border rounded shadow invisible" style="background-color: rgba(249,221,22,0);"><img class="img-fluid" src="assets/img/favicon.png"></div>
<div class="card-body text-center">
<h4 class="card-title">Kode Server</h4>
<h6 class="text-muted card-subtitle mb-2">Where to save packages, code of Kode</h6><button class="btn btn-light active" type="button" style="background-color: #4396ee;color: rgb(255,255,255);">See more</button></div>
</div>
</div>
</div>
</div>
</div>
<div class="team-boxed">
<div class="container">
<div class="intro">
<h2 class="text-center">Team </h2>
</div>
<div class="row people">
<div class="col-md-6 col-lg-4 item">
<div class="box"><img class="rounded-circle" src="assets/img/thinh.jpg">
<h3 class="name">Võ Quốc Thịnh</h3>
<p class="title">leader and coder</p>
<div class="text-center social"><a href="#"><i class="fa fa-facebook-official"></i></a><a href="#"><i class="fa fa-twitter"></i></a><a href="#"><i class="fa fa-github"></i></a></div>
</div>
</div>
<div class="col-md-6 col-lg-4 item">
<div class="box"><img class="rounded-circle" src="assets/img/namrc.jpg">
<h3 class="name">Nam RC</h3>
<p class="title">designer</p>
<div class="social"><a href="#"><i class="fa fa-facebook-official"></i></a><a href="#"><i class="fa fa-twitter"></i></a><a href="#"><i class="fa fa-instagram"></i></a></div>
</div>
</div>
<div class="col-md-6 col-lg-4 item">
<div class="box"><img class="rounded-circle" src="assets/img/neonguyen.jpg">
<h3 class="name">Nguyễn Quang Anh</h3>
<p class="title">maketing</p>
<div class="social"><a href="#"><i class="fa fa-facebook-official"></i></a><a href="#"><i class="fa fa-twitter"></i></a><a href="#"><i class="fa fa-instagram"></i></a></div>
</div>
</div>
</div>
<div class="row visible people" style="margin-top: -114px;">
<div class="col-md-6 col-lg-4 item">
<div class="box"><img class="rounded-circle" src="assets/img/truong.jpg">
<h3 class="name">Nguyễn Đoan Trường</h3>
<p class="title">editor</p>
<div class="text-center social"><a href="#"><i class="fa fa-facebook-official"></i></a><a href="#"><i class="fa fa-twitter"></i></a><a href="#"><i class="fa fa-instagram"></i></a></div>
</div>
</div>
</div>
</div>
</div>
<div></div>
<div class="btn-group" role="group"></div>
<div class="highlight-blue">
<div class="container">
<div class="intro">
<h2 class="text-center">Install Kode today</h2>
<p class="text-center">Free and open source to day, forever</p>
</div>
<div class="buttons"><a class="btn btn-primary" role="button" href="https://kodelang.dev/get-started.html">Getting started</a><a class="btn btn-primary" role="button" href="https://www.github.com/kodestudio">github repo</a></div>
</div>
</div>
<div class="footer-clean">
<footer>
<div class="container">
<div class="row justify-content-center">
<div class="col-sm-4 col-md-3 item">
<h3>Tools</h3>
<ul>
<li><a href="https://kodelang.dev/kodestudio.html">Kode Studio</a></li>
<li><a href="https://kodelang.dev/cli">Kode CLI</a></li>
<li><a href="https://kodelang.dev/kodepas.html">KodePas</a></li>
</ul>
</div>
<div class="col-sm-4 col-md-3 item">
<h3>Resource</h3>
<ul>
<li><a href="https://kodelang.dev/docs.html">Document</a></li>
<li><a href="https://kodelang.dev/community.html">Community</a></li>
<li><a href="https://kodelang.dev/donate.html">Donate</a></li>
</ul>
</div>
<div class="col-sm-4 col-md-3 item">
<h3>More</h3>
<ul>
<li><a href="https://kodelang.dev/contact.html">Contact</a></li>
<li><a href="https://kodelang.dev/jobs.html">Jobs</a></li>
<li><a href="https://kodelang.dev/terms.html">Terms</a></li>
</ul>
</div>
<div class="col-lg-3 item social"><a href="https://www.facebook.com/kode.page"><i class="icon ion-social-facebook"></i></a><a href="https://www.youtube.com/channel/UCNE3g4pFx40HJrnBoHzgJ8A"><i class="icon ion-social-youtube"></i></a><a href="https://www.github.com/kodestudio"><i class="icon ion-social-github"></i></a>
<a
href="https://www.instagram.com/kode.page"><i class="icon ion-social-instagram"></i></a>
<p class="copyright">Kode © 2020</p>
</div>
</div>
</div>
</footer>
</div>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script src="assets/js/bs-init.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/aos/2.2.0/aos.js"></script>
</body>
</html>