-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
369 lines (353 loc) · 11.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Code Playground | An Online IDE</title>
<link rel="icon" type="image/x-icon" href="assets/favicon-196.png" />
<!-- Linking External CSS -->
<link rel="stylesheet" href="style.css" />
<!-- Bootstrap CSS -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
</head>
<body>
<!-- Navigation Bar -->
<nav
class="navbar fixed-top navbar-expand-lg"
style="background-color: #0e1525"
>
<div class="container container-fluid">
<a
class="navbar-brand"
style="color: white; font-family: sans-serif"
href="#"
>
<img
style="height: 45px"
src="assets/icon-rounded-192x192.png"
alt="logo"
/>
Code Playground</a
>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNavAltMarkup"
aria-controls="navbarNavAltMarkup"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div
class="collapse navbar-collapse justify-content-end"
id="navbarNavAltMarkup"
>
<div class="navbar-nav align-items-center">
<a
class="nav-link nav-hover active"
style="color: white"
aria-current="page"
href="#"
>Home</a
>
<a
class="nav-link nav-hover active"
style="color: white"
data-bs-toggle="modal"
data-bs-target="#exampleModal"
>IDE</a
>
<a
class="nav-link nav-hover active"
style="color: white"
href="main_web/web playground/index.html"
>Web Playground</a
>
<a
class="nav-link nav-hover active"
style="color: white"
data-bs-toggle="modal"
data-bs-target="#exampleModal"
>Quiz</a
>
<a class="nav-link nav-hover active" style="color: white" href="#"
>About</a
>
<a
class="nav-link active"
style="color: white"
href="login_signup/login.php"
><button class="btn-login">Log In</button></a
>
<a
class="nav-link active"
style="color: white"
href="login_signup/register.php"
><button class="btn-signup">Sign Up</button></a
>
</div>
</div>
</div>
</nav>
<!-- hello -->
<div class="custom-div">
<video
src="assets/Pretend You're Working - Hacker Typer.mp4"
autoplay
muted
loop
></video>
<!-- Banner Area -->
<div class="banner">
<h1>Code, create, and</h1>
<h1>learn together</h1>
<br />
<p>
Use our free, collaborative, in-browser IDE to code in different
languages — without
</p>
<p>spending a second on setup.</p>
<a href="login_signup/register.php"
><button class="btn-signup-banner">Start Coding</button></a
>
</div>
</div>
<!-- Feature Area -->
<div class="feature">
<h1 class="feature-header">Features for all skill levels</h1>
<!-- Feature Area 1st row -->
<div class="container">
<div class="card-group row">
<div class="col-md-4">
<div class="card border-warning mb-3">
<div class="card-header">In-browser IDE</div>
<div class="card-body">
<p class="card-text">
Start coding with your favorite language on any platform, OS,
and device.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card border-warning mb-3">
<div class="card-header">Learning resources</div>
<div class="card-body">
<p class="card-text">
Learn how to code from 3 million+ passionate programmers,
technologists, creatives, and learners of all kinds.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card border-warning mb-3">
<div class="card-header">In-browser Web Play</div>
<div class="card-body">
<p class="card-text">
Start coding with your favorite language on any platform, OS,
and device.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Feature Area 2nd row -->
<div class="container">
<div class="card-group row">
<div class="col-md-4">
<div class="card border-warning mb-3">
<div class="card-header">Quiz</div>
<div class="card-body">
<p class="card-text">
Test yourself and become pro in your favorite language.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card border-warning mb-3">
<div class="card-header">Algo Visualizer.</div>
<div class="card-body">
<p class="card-text">
Learn algorithms visually. Understand every point.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card border-warning mb-3">
<div class="card-header">Team plans</div>
<div class="card-body">
<p class="card-text">
Make your team more productive with interactive docs,
real-time collaboration, and 0-hassle remote interviewing.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<section class="demo">
<div class="row">
<div class="col-md-6">
<img src="assets/Web Playground.png" width="100%" alt="" />
</div>
<div class="col-md-6">
<h3>Instant Web Playground</h3>
<h2>Code right in your <br />browser.</h2>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatum
fuga repellendus nisi dolorum optio laborum possimus quae id rerum
reiciendis facilis commodi autem magnam, sunt molestias. Labore
expedita ipsum iure deleniti repellat aliquam aut exercitationem est
quibusdam dolores similique.
</p>
</div>
</div>
<div class="row">
<div class="col-md-6">
<h3>Instant IDE</h3>
<h2>Code right in your <br />browser.</h2>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatum
fuga repellendus nisi dolorum optio laborum possimus quae id rerum
reiciendis facilis commodi autem magnam, sunt molestias. Labore
expedita ipsum iure deleniti repellat aliquam aut exercitationem est
quibusdam dolores similique.
</p>
</div>
<div class="col-md-6">
<img src="assets/IDE - Code Playground.png" width="100%" alt="" />
</div>
</div>
<div class="row">
<div class="col-md-6">
<img src="assets/Quize - Code Playground.png" width="100%" alt="" />
</div>
<div class="col-md-6">
<h3>Instant Quiz</h3>
<h2>Practice your knowedge <br />right now.</h2>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatum
fuga repellendus nisi dolorum optio laborum possimus quae id rerum
reiciendis facilis commodi autem magnam, sunt molestias. Labore
expedita ipsum iure deleniti repellat aliquam aut exercitationem est
quibusdam dolores similique.
</p>
</div>
</div>
<div class="row">
<div class="col-md-6">
<h3>Soring Visualizer</h3>
<h2>See how sorting works in <br />browser.</h2>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatum
fuga repellendus nisi dolorum optio laborum possimus quae id rerum
reiciendis facilis commodi autem magnam, sunt molestias. Labore
expedita ipsum iure deleniti repellat aliquam aut exercitationem est
quibusdam dolores similique.
</p>
</div>
<div class="col-md-6">
<img src="assets/Sorting Visualizer.png" width="100%" alt="" />
</div>
</div>
</section>
<!-- Modal -->
<div
class="modal fade"
id="exampleModal"
tabindex="-1"
aria-labelledby="exampleModalLabel"
aria-hidden="true"
>
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Log in Requierd</h5>
<button
type="button"
class="btn-close"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body">
If you want to use this feautre then you have to sign up.
</div>
<div class="modal-footer">
<button
type="button"
class="btn btn-secondary"
data-bs-dismiss="modal"
>
Close
</button>
<a href="login_signup/register.php"
><button type="button" class="btn btn-primary">Sign Up</button></a
>
</div>
</div>
</div>
</div>
<!-- Footer -->
<div class="footer">
<div class="container">
<div class="row">
<div class="col-md-6">
<h4>
"Millions of people of all ages and from around<br />the world are
improving their lives with us"
</h4>
</div>
<div class="col-md-2">
<ul>
<li><h3>Features</h3></li>
<a href=""><li>Instant IDE</li></a>
<a href=""><li>Web Development</li></a>
<a href=""><li>Quiz Section</li></a>
<a href=""><li>Algo Visualizer</li></a>
</ul>
</div>
<div class="col-md-2">
<ul>
<li><h3>Support</h3></li>
<a href=""><li>FAQs</li></a>
<a href=""><li>Tech in Code Playground</li></a>
<a href=""><li>Code Playground Business</li></a>
<a href=""><li>About Us</li></a>
<a href=""><li>Contect Us</li></a>
</ul>
</div>
<div class="col-md-2">
<ul>
<li><h3>Terms</h3></li>
<a href=""><li>Privacy Policy</li></a>
<a href=""><li>Sitemap</li></a>
</ul>
</div>
</div>
</div>
</div>
<footer>
Copyright © 2022 | Code Playground | MSB Software Solution Ltd.
</footer>
<!-- Bootstrap JS -->
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"
></script>
</body>
</html>