-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
445 lines (421 loc) · 23.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<title>iCoder Heaven For Programmers</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="/iCoder">iCoder</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="/iCoder/">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="/iCoder/About.html">About</a>
</li>
<li class="nav-item dropdown ">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Topic
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="#">Web Developer</a>
<a class="dropdown-item" href="#">PHP Developer</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#">Write For Us</a>
<a class="dropdown-item" href="#">Support</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="/iCoder/contact.html">Contact Us</a>
</li>
</ul>
<form class="form-inline my-2 my-lg-0">
<input class="form-control mr-sm-2" type="search" placeholder="Search Here" aria-label="Search">
<button class="btn btn-outline-light my-2 my-sm-0" type="submit">Search</button>
</form>
<button class="btn btn-outline-success ml-3 my-2 my-sm-0" type="submit" data-toggle="modal"
data-target="#loginModal">Log in</button>
<button class="btn btn-outline-success my-2 ml-2 my-sm-0" type="submit" data-toggle="modal"
data-target="#signupModal">Sign up</button>
</div>
</nav>
<!--Log IN Modal -->
<div class="modal fade" id="loginModal" tabindex="-1" role="dialog" aria-labelledby="loginModalLabel"
aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Welcome to iCoder</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<form>
<div class="form-group">
<label for="exampleInputEmail1">Email address</label>
<input type="email" required class="form-control" id="exampleInputEmail1"
aria-describedby="emailHelp" placeholder="Enter email">
<small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone
else.</small>
</div>
<div class="form-group">
<label for="exampleInputPassword1">Password</label>
<input type="password" required class="form-control" id="exampleInputPassword1"
placeholder="Password">
</div>
<div class="form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">Confirm as You</label>
</div>
<button type="submit" class="btn btn-primary my-5">Log IN </button>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<!--Sign UP Modal -->
<div class="modal fade" id="signupModal" tabindex="-1" role="dialog" aria-labelledby="signupModalLabel"
aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Modal title</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<form>
<div class="form-row">
<div class="col-md-4 mb-3">
<label for="validationServer01">First name</label>
<input type="text" class="form-control" id="validationServer01" placeholder="First name"
required>
<div class="valid-feedback">
Looks good!
</div>
</div>
<div class="col-md-4 mb-3">
<label for="validationServer02">Last name</label>
<input type="text" class="form-control" id="validationServer02" placeholder="Last name"
required>
<div class="valid-feedback">
Looks good!
</div>
</div>
<div class="col-md-4 mb-3">
<label for="validationServerUsername">Username</label>
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text" id="inputGroupPrepend3">@</span>
</div>
<input type="text" class="form-control" id="validationServerUsername"
placeholder="Username" aria-describedby="inputGroupPrepend3" required>
<div class="invalid-feedback">
Please choose a username.
</div>
</div>
</div>
</div>
<div class="form-group row">
<label for="inputEmail3" class="col-sm-2 col-form-label">Email</label>
<div class="col-sm-10">
<input type="email" required class="form-control" id="inputEmail3" placeholder="Email">
</div>
</div>
<div class="form-group row">
<label for="inputPassword3" class="col-sm-2 col-form-label">Password</label>
<div class="col-sm-10">
<input type="password" required class="form-control" id="inputPassword3"
placeholder="Password">
</div>
</div>
<div class="form-group row">
<div class="col-sm-2">Are You Member?</div>
<div class="col-sm-10">
<div class="form-check">
<input class="form-check-input" type="checkbox" id="gridCheck1">
<label class="form-check-label" for="gridCheck1">
Yes
</label>
</div>
</div>
</div>
<div class="form-group row">
<button type="submit" class="btn btn-primary ml-2 mr-2">Sign in</button>
<button type="reset" class="btn btn-primary ml-2">Reset</button>
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div>
<!--Background-Slide-Image-->
<div class="bd-example">
<div id="carouselExampleCaptions" class="carousel slide carousel-fade" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleCaptions" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleCaptions" data-slide-to="1"></li>
<li data-target="#carouselExampleCaptions" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="img/bg-1.jpg" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block">
<h2>Welcome to iCoder</h2>
<p>Technology News,Development and Trends.</p>
<button class="btn btn-primary">Technology</button>
<button class="btn btn-danger">Web Development</button>
<button class="btn btn-success">Web Fun</button>
</div>
</div>
<div class="carousel-item">
<img src="img/bg-2.jpg" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block">
<h2>The Best Coding Blog</h2>
<p>Technology News,Development and Trends.</p>
<button class="btn btn-primary">Technology</button>
<button class="btn btn-danger">Web Development</button>
<button class="btn btn-success">Web Fun</button>
</div>
</div>
<div class="carousel-item">
<img src="img/bg-3.jpg" class="d-block w-100" alt="...">
<div class="carousel-caption d-none d-md-block">
<h2>Award Wining Blog</h2>
<p>Technology News,Development and Trends.</p>
<button class="btn btn-primary">Technology</button>
<button class="btn btn-danger">Web Development</button>
<button class="btn btn-success">Web Fun</button>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleCaptions" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleCaptions" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<!--Container Development-->
<div class="container marketing my-5">
<div class="row">
<div class="col-lg-4">
<div class="text-center">
<img src="img/m-1.jpg" class="bd-placeholder-img rounded-circle " width="140" height="140" alt="">
</div>
<h2 class="fw-normal m-3 text-justify ">
JavaScript Developer
</h2>
<div>
<p class="text-justify">
If we want to use a smart computer in processing the
Arabic language, we find ourselves facing a great challenge, especially since our language
is characterized by the coherence and overlap of its systems. However, artificial
intelligence enables us to obtain four types of processing, namely: phonological processing,
morphological processing, grammatical processing, and processing semantic.
</p>
</div>
<div class="text-right">
<button class="btn btn-dark">View More</button>
</div>
</div>
<div class="col-lg-4">
<div class="text-center">
<img src="img/m-2.jpg" class="bd-placeholder-img rounded-circle " width="140" height="140" alt="">
</div>
<h2 class="fw-normal m-3 text-justify ">
Full Stack Developer
</h2>
<div>
<p class="text-justify">
If we want to use a smart computer in processing the
Arabic language, we find ourselves facing a great challenge, especially since our language
is characterized by the coherence and overlap of its systems. However, artificial
intelligence enables us to obtain four types of processing, namely: phonological processing,
morphological processing, grammatical processing, and processing semantic.
</p>
</div>
<div class="text-right">
<button class="btn btn-dark">View More</button>
</div>
</div>
<div class="col-lg-4">
<div class="text-center">
<img src="img/m-3.jpg" class="bd-placeholder-img rounded-circle " width="140" height="140" alt="">
</div>
<h2 class="fw-normal m-3 text-justify">
Digital Marketing
</h2>
<p class="text-justify">
If we want to use a smart computer in processing the
Arabic language, we find ourselves facing a great challenge, especially since our language
is characterized by the coherence and overlap of its systems. However, artificial
intelligence enables us to obtain four types of processing, namely: phonological processing,
morphological processing, grammatical processing, and processing semantic.
</p>
<div class="text-right">
<button class="btn btn-dark">View More</button>
</div>
</div>
</div>
</div>
<!-- Container -->
<div class="container my-5">
<hr>
<div class="row mb-2">
<div class="col-md-6">
<div
class="row no-gutters border rounded overflow-hidden flex-md-row mb-4 shadow-sm h-md-250 position-relative">
<div class="col p-4 d-flex flex-column position-static">
<strong class="d-inline-block mb-2 text-primary">Global Confrence </strong>
<h3 class="mb-0">JavaScript Developer</h3>
<div class="mb-1 text-muted">Nov 12</div>
<p class="card-text mb-auto text-justify">This is a wider card with supporting text below as a
natural
lead-in to additional content.</p>
<a href="#" class="stretched-link">Continue reading</a>
</div>
<div class="col-auto d-none d-lg-block">
<img class="bd-placeholder-img" width="250" height="250" src="img/a1.jpg" alt="">
</div>
</div>
</div>
<div class="col-md-6">
<div
class="row no-gutters border rounded overflow-hidden flex-md-row mb-4 shadow-sm h-md-250 position-relative">
<div class="col p-4 d-flex flex-column position-static">
<strong class="d-inline-block mb-2 text-success">PHP Developer</strong>
<h3 class="mb-0">Learn PHP Developer</h3>
<div class="mb-1 text-muted">Nov 11</div>
<p class="card-text mb-auto text-justify">This is a wider card with supporting text below as a
natural lead-in to
additional content.</p>
<a href="#" class="stretched-link">Continue reading</a>
</div>
<div class="col-auto d-none d-lg-block">
<img class="bd-placeholder-img" width="250" height="250" src="img/a2.jpg" alt="">
</div>
</div>
</div>
<div class="col-md-6">
<div
class="row no-gutters border rounded overflow-hidden flex-md-row mb-4 shadow-sm h-md-250 position-relative">
<div class="col p-4 d-flex flex-column position-static">
<strong class="d-inline-block mb-2 text-success">Full Stack Web Developer</strong>
<h3 class="mb-0">Learn Full Stack Web Developer</h3>
<div class="mb-1 text-muted">Nov 11</div>
<p class="card-text mb-auto text-justify">This is a wider card with supporting text below as a
natural lead-in to
additional content.</p>
<a href="#" class="stretched-link">Continue reading</a>
</div>
<div class="col-auto d-none d-lg-block">
<img class="bd-placeholder-img" width="250" height="250" src="img/a2.jpg" alt="">
</div>
</div>
</div>
<div class="col-md-6">
<div
class="row no-gutters border rounded overflow-hidden flex-md-row mb-4 shadow-sm h-md-250 position-relative">
<div class="col p-4 d-flex flex-column position-static">
<strong class="d-inline-block mb-2 text-success">Digital Marketing</strong>
<h3 class="mb-0">Learn Digital Marketing</h3>
<div class="mb-1 text-muted">Nov 11</div>
<p class="card-text mb-auto text-justify">This is a wider card with supporting text below as a
natural lead-in to
additional content.</p>
<a href="#" class="stretched-link">Continue reading</a>
</div>
<div class="col-auto d-none d-lg-block">
<img class="bd-placeholder-img" width="250" height="250" src="img/a1.jpg" alt="">
</div>
</div>
</div>
</div>
<hr>
</div>
<!-- Footer -->
<footer class="container-fluid bg-dark py-5">
<p class="float-right"><a href="#">Back to top</a></p>
<div class="row">
<div class="col-12 col-md">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
class="d-block mb-2 text-light">
<circle cx="12" cy="12" r="10"></circle>
<line x1="14.31" y1="8" x2="20.05" y2="17.94"></line>
<line x1="9.69" y1="8" x2="21.17" y2="8"></line>
<line x1="7.38" y1="12" x2="13.12" y2="2.06"></line>
<line x1="9.69" y1="16" x2="3.95" y2="6.06"></line>
<line x1="14.31" y1="16" x2="2.83" y2="16"></line>
<line x1="16.62" y1="12" x2="10.88" y2="21.94"></line>
</svg>
<small class="d-block mb-3 text-light">© 2020-2022</small>
</div>
<div class="col-6 col-md">
<h5 class="text-light">Development</h5>
<ul class="list-unstyled text-small">
<li><a class="text-muted" href="#">JavaScript Developer</a></li>
<li><a class="text-muted" href="#">PHP Developer</a></li>
<li><a class="text-muted" href="#">Software Developer</a></li>
<li><a class="text-muted" href="#">Full Stack Developer</a></li>
<li><a class="text-muted" href="#">Digital Marketing</a></li>
</ul>
</div>
<div class="col-6 col-md">
<h5 class="text-light">Resourse</h5>
<ul class="list-unstyled text-small">
<li><a class="text-muted" href="#">Business</a></li>
<li><a class="text-muted" href="#">Education</a></li>
<li><a class="text-muted" href="#">Government</a></li>
<li><a class="text-muted" href="#">Gaming</a></li>
</ul>
</div>
<div class="col-6 col-md">
<h5 class="text-light">About Us</h5>
<ul class="list-unstyled text-small">
<li><a class="text-muted" href="#">Team</a></li>
<li><a class="text-muted" href="#">Locations</a></li>
<li><a class="text-muted" href="#">Privacy</a></li>
<li><a class="text-muted" href="#">Terms</a></li>
</ul>
</div>
</div>
</footer>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"></script>
</body>
</html>