-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
735 lines (713 loc) · 25.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
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
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
<!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"
/>
<link rel="stylesheet" href="style.css" />
<title>website 2</title>
</head>
<body>
<div class="header">
<nav class="navbar navbar-expand-lg navbar-light bg-white">
<img
class="navbarimg"
src="360_F_315691864_KxRoy6rBHIssrBBIyjFNUxtc4ICTshT3 1.png"
alt=""
/>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarNavAltMarkup"
aria-controls="navbarNavAltMarkup"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-item nav-link active my-links" href="#"
>Our Service <span class="sr-only">(current)</span></a
>
<a class="nav-item nav-link my-links" href="#">About us</a>
<a class="nav-item nav-link my-links" href="#">Blog</a>
<a class="nav-item nav-link my-links" href="#">Contact Us</a>
</div>
</div>
</nav>
</div>
<div
id="carouselExampleInterval"
class="carousel slide"
data-ride="carousel"
>
<div class="carousel-inner">
<div class="carousel-item active" data-interval="100000">
<div class="container-fluid">
<div class="row">
<div class="col-xl-6 col-lg-6 col-md-6 col-sm-6 col-6 row2">
<div class="semiciecle2">
<div class="image">
<img src="left.png" alt="" />
</div>
</div>
<div class="text1">
<h1>
Grow your brand <br />
through digital
</h1>
<p>
If the path is beautiful, let us not ask where it leads. my
<br />
religion is very simple. my religion is kindness. each of us
<br />
has within our power the ability to disrupt
</p>
<button type="button" class="btn btn-dark">learn more</button>
</div>
</div>
<div class="col-xl-6 col-lg-6 col-md-6 col-sm-6 col-6 row1">
<div class="semiciecle1">
<img src="right.png" alt="" />
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item" data-interval="100000">
<div class="container-fluid">
<div class="row">
<div class="col-xl-6 col-lg-6 col-md-6 col-sm-6 col-6 row2">
<div class="semiciecle2">
<div class="image">
<img src="left.png" alt="" />
</div>
</div>
<div class="text1">
<h1>
Grow your brand <br />
through digital
</h1>
<p>
If the path is beautiful, let us not ask where it leads. my
<br />
religion is very simple. my religion is kindness. each of us
<br />
has within our power the ability to disrupt
</p>
<button type="button" class="btn btn-dark">learn more</button>
</div>
</div>
<div class="col-xl-6 col-lg-6 col-md-6 col-sm-6 col-6 row1">
<div class="semiciecle1">
<img src="right.png" alt="" />
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="container-fluid">
<div class="row">
<div class="col-xl-6 col-lg-6 col-md-6 col-sm-6 col-6 row2">
<div class="semiciecle2">
<div class="image">
<img src="left.png" alt="" />
</div>
</div>
<div class="text1">
<h1>
Grow your brand <br />
through digital
</h1>
<p>
If the path is beautiful, let us not ask where it leads. my
<br />
religion is very simple. my religion is kindness. each of us
<br />
has within our power the ability to disrupt
</p>
<button type="button" class="btn btn-dark">learn more</button>
</div>
</div>
<div class="col-xl-6 col-lg-6 col-md-6 col-sm-6 col-6 row1">
<div class="semiciecle1">
<img src="right.png" alt="" />
</div>
</div>
</div>
</div>
</div>
</div>
<a
class="carousel-control-prev"
href="#carouselExampleInterval"
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="#carouselExampleInterval"
role="button"
data-slide="next"
>
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<div class="sevices">
<div class="servicesrow1">
<div class="servicecol1">
<div class="rectangle">
<h1>Web Development</h1>
<p>
My first thought about art, as a child, was that <br />
the artist brings something into the world that <br />
didn't exist before, and that he does it without <br />
destroying something else
</p>
</div>
<div class="circle">
<img src="monitor.png" alt="" />
</div>
</div>
<div class="servicecol1">
<div class="rectangle">
<h1>Digital Marketing</h1>
<p>
My first thought about art, as a child, was that <br />
the artist brings something into the world that <br />
didn't exist before, and that he does it without <br />
destroying something else
</p>
</div>
<div class="circle">
<img src="monitor1.png" alt="" />
</div>
</div>
</div>
<div class="servicerow2">
<h1 class="h1a">
We’re always ready <br />
for <span style="color: #ffc700">challenges</span>
</h1>
<div class="servicesrow1">
<div class="servicecol1">
<div class="rectangle">
<h1>UI/UX Design</h1>
<p>
My first thought about art, as a child, was that <br />
the artist brings something into the world that <br />
didn't exist before, and that he does it without <br />
destroying something else
</p>
</div>
<div class="circle">
<img src="monitor2.png" alt="" />
</div>
</div>
<div class="servicecol1">
<div class="rectangle">
<h1>Brand Design</h1>
<p>
My first thought about art, as a child, was that <br />
the artist brings something into the world that <br />
didn't exist before, and that he does it without <br />
destroying something else
</p>
</div>
<div class="circle">
<img src="monitor3.png" alt="" />
</div>
</div>
</div>
</div>
</div>
<div class="work">
<div class="gallery">
<div class="galleryrow1">
<div class="gallerycol1">
<h1 class="h1c">
Our recent <span style="color: #ffc700">projects</span>
</h1>
<hr />
<div class="detail1">
<h1 class="h1b">
Website development for <br />
Digital Company
</h1>
<p>
My first thought about art, as a child, was that the artist
<br />
brings something into the world that didn't exist before, and
<br />
that he does it without destroying something else
</p>
</div>
</div>
<div class="gallerycol2">
<div class="smlcircle">
<div class="crl1"></div>
<div class="srl2"></div>
<div class="srl2"></div>
<div class="srl2"></div>
<div class="srl2"></div>
<div class="srl2"></div>
</div>
<div class="projectimage">
<img src="Rectangleproject.png" alt="" />
</div>
</div>
</div>
<div class="galleryrow2">
<img class="a" src="Rectangleproject1.png" alt="" />
<img class="b" src="Rectangleproject2.png" alt="" />
</div>
</div>
</div>
<div class="square"></div>
<div class="promotion">
<img src="Video.png" alt="" />
<div class="promotionrow">
<h1>
The thing about us is <br />
<span style="color: #ffc700">we think big, huge</span>
</h1>
<p>
• If the path is beautiful, let us not ask where it leads <br />
• my religion is very simple. my religion is kindness <br />
• each of us has within our power the ability to disrupt
</p>
<button>LEARN MORE</button>
</div>
</div>
<div class="container-fluid padg">
<div class="row">
<div class="col-xl-3 col-lg-3 col-md-3 col-sm-3 col-3 milestone1">
<h1>124</h1>
<h3>complete projects</h3>
</div>
<div class="col-xl-3 col-lg-3 col-md-3 col-sm-3 col-3 milestone2">
<h1>99%</h1>
<h3>Satisfied Clients</h3>
</div>
<div class="col-xl-3 col-lg-3 col-md-3 col-sm-3 col-3 milestone1">
<h1>235</h1>
<h3>Success Campaign</h3>
</div>
<div class="col-xl-3 col-lg-3 col-md-3 col-sm-3 col-3 milestone3">
<h1>2345</h1>
<h3>Cups of Coffee</h3>
</div>
</div>
</div>
<div class="mainblog">
<div class="blog">
<h1>From our <span style="color: #ffc700">blog</span></h1>
<div class="blogcol2">
<div class="blogrow1">
<img class="im1" src="blog1.png" alt="" />
<div class="subcl1">
<div class="blogtt1">
Website design | Thursday, 26 March 2020
</div>
<div class="subcl2">
<div class="blogtt2">
I think night-time is dark so you can <br />
imagine with less distraction
</div>
<div class="subcl3">
<div class="blogtt3">
The engine that gives its mysterious inner life to a work of
art must be the <br />
subterranean expression of a wish, working its way to the
surface of a narrative. <br />
change is an easy panacea. it takes character to stay in
one…
</div>
<div class="subcl4">
<div class="blogtt4">Read More</div>
<img class="im2" src="blogicon.png" alt="" />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="blog2">
<div class="bg2cls">
<div class="bgcl1">
<img class="im3" src="blog2.png" alt="" />
<div class="bg2rw1">
<div class="rw1tt1">website development</div>
<div class="rw1tt2">
The individual is born <br />
of nature, but the artist <br />
is born of that <br />
individual
</div>
</div>
</div>
<div class="bgcl1">
<img class="im3" src="blog3.png" alt="" />
<div class="bg2rw1">
<div class="rw1tt1">Brand Design</div>
<div class="rw1tt2">
A life without it is like a <br />
sunless garden when <br />
the flowers are dead
</div>
</div>
</div>
<div class="bgcl1">
<img class="im3" src="blog4.png" alt="" />
<div class="bg2rw1">
<div class="rw1tt1">UI UX Design</div>
<div class="rw1tt2">
All sorrows can be <br />
borne if they can be put <br />
into a story
</div>
</div>
</div>
<div class="bgcl1">
<img class="im3" src="blog5.png" alt="" />
<div class="bg2rw1">
<div class="rw1tt1">Brand Design</div>
<div class="rw1tt2">
Love is friendship set <br />
on fire. certain <br />
thoughts are prayers
</div>
</div>
</div>
</div>
</div>
</div>
<div class="our_team">
<div class="teamrow1">
<div class="subcol1">
<div class="teamtt1">Tiara Lyodra</div>
<div class="teamtt2">Head of Product</div>
<div class="teamimg">
<img class="teamimages3" src="facebook.png" alt="" />
<img class="teamimages4" src="instagram.png" alt="" />
<img class="teamimages5" src="linkden.png" alt="" />
</div>
</div>
<div class="subcol2">
<div class="teamtt4">
Saturday found him for the first time strolling <br />
alone through zurich, breathing in the heady <br />
smell of his freedom. new adventures hid <br />
around each corner. <br />
<br />
The future was again a secret. now, what was <br />
tiring had disappeared and only the beauty <br />
remained.
</div>
<div class="teamimages">
<img class="teamimages6" src="Group 5.png" alt="" />
<img class="teamimages6" src="Group 51.png" alt="" />
</div>
</div>
</div>
<div class="teamrow2">
<div class="teamtt3">
<span style="color: #ffc700">People</span> behind the <br />
scenes
</div>
<div class="subcol3">
<img class="teamimages1" src="team1.png" alt="" />
<img class="teamimages1" src="team2.png" alt="" />
<img class="teamimages2" src="team3.png" alt="" />
<img class="teamimages1" src="team4.png" alt="" />
</div>
</div>
</div>
<div
id="carouselExampleControls"
class="carousel slide"
data-ride="carousel"
>
<div class="carousel-inner">
<div class="carousel-item active">
<div class="container-fluid">
<div class="row testimony">
<div class="col-xl-1 col-lg-1 col-md-1 col-sm-1 col-1">
<div class="pdng2">
<div class="leftspe">
<img class="testimg1" src="right.png" alt="" />
</div>
</div>
</div>
<div class="col-xl-10 col-lg-10 col-md-10 col-sm-10 col-10">
<div class="testdetails1">
<div class="deltt1">“</div>
<div class="testdetails2">
<div class="deltt2">
Saturday found him for the first time strolling alone
through zurich, <br />
breathing in the heady smell of his freedom. new
adventures hid around <br />
each corner. The future was again a secret. now, what was
tiring
</div>
<div class="testdetails3">
<div class="deltt3">Anna Karenina</div>
<div class="deltt4">UI Designer</div>
</div>
</div>
</div>
</div>
<div class="col-xl-1 col-lg-1 col-md-1 col-sm-1 col-1">
<div class="pdng3">
<div class="rightspe">
<img class="testimg1" src="left.png" alt="" />
</div>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="container-fluid">
<div class="row testimony">
<div class="col-xl-1 col-lg-1 col-md-1 col-sm-1 col-1">
<div class="pdng2">
<div class="leftspe">
<img class="testimg1" src="right.png" alt="" />
</div>
</div>
</div>
<div class="col-xl-10 col-lg-10 col-md-10 col-sm-10 col-10">
<div class="testdetails1">
<div class="deltt1">“</div>
<div class="testdetails2">
<div class="deltt2">
Saturday found him for the first time strolling alone
through zurich, <br />
breathing in the heady smell of his freedom. new
adventures hid around <br />
each corner. The future was again a secret. now, what was
tiring
</div>
<div class="testdetails3">
<div class="deltt3">Anna Karenina</div>
<div class="deltt4">UI Designer</div>
</div>
</div>
</div>
</div>
<div class="col-xl-1 col-lg-1 col-md-1 col-sm-1 col-1">
<div class="pdng3">
<div class="rightspe">
<img class="testimg1" src="left.png" alt="" />
</div>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-item">
<div class="container-fluid">
<div class="row testimony">
<div class="col-xl-1 col-lg-1 col-md-1 col-sm-1 col-1">
<div class="pdng2">
<div class="leftspe">
<img class="testimg1" src="right.png" alt="" />
</div>
</div>
</div>
<div class="col-xl-10 col-lg-10 col-md-10 col-sm-10 col-10">
<div class="testdetails1">
<div class="deltt1">“</div>
<div class="testdetails2">
<div class="deltt2">
Saturday found him for the first time strolling alone
through zurich, <br />
breathing in the heady smell of his freedom. new
adventures hid around <br />
each corner. The future was again a secret. now, what was
tiring
</div>
<div class="testdetails3">
<div class="deltt3">Anna Karenina</div>
<div class="deltt4">UI Designer</div>
</div>
</div>
</div>
</div>
<div class="col-xl-1 col-lg-1 col-md-1 col-sm-1 col-1">
<div class="pdng3">
<div class="rightspe">
<img class="testimg1" src="left.png" alt="" />
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<a
class="carousel-control-prev"
href="#carouselExampleControls"
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="#carouselExampleControls"
role="button"
data-slide="next"
>
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<div class="grey">
<div class="clients">
<img class="clientsimg" src="logo_1.png" alt="" />
<img class="clientsimg" src="logo_2.png" alt="" />
<img class="clientsimg" src="logo_3.png" alt="" />
<img class="clientsimg" src="logo_4.png" alt="" />
<img class="clientsimg" src="logo_5.png" alt="" />
</div>
<div class="ywrct"></div>
<div class="contact">
<div class="cntus">
<div class="cnttt1">
Start a new <br />
project!
</div>
<div class="cnttt2">
If the path is beautiful, let us not ask where it <br />
leads. my religion is very simple. my religion is <br />
kindness.
</div>
</div>
<div class="forms">
<div>
<input
type="email"
class="frm1"
id="exampleFormControlInput1"
placeholder="Your full name"
/>
</div>
<div class="cl1">
<div>
<input
type="email"
class="frm2"
id="exampleFormControlInput1"
placeholder="Your e-mail address"
/>
</div>
<div class="frmbtn">
<div>
<input
type="email"
class="frm3"
id="exampleFormControlInput1"
placeholder="Drop us a message here…"
/>
</div>
<button class="formbtn">Send now</button>
</div>
</div>
</div>
</div>
</div>
<div class="blackcol">
<div class="footer">
<div class="ftrw1">
<img class="ftimg1" src="footer.png" alt="" />
<div class="ftsub1">
<div class="fttt1">
Funding freemium long tail hypotheses first <br />
mover advantage assets ownership niche <br />
market startup investor.
</div>
<div class="ftsub2">
<img class="ftimg2" src="mail.png" alt="" />
<div class="fttt2">[email protected]</div>
</div>
<div class="ftsub2">
<img class="ftimg2" src="call.png" alt="" />
<div class="fttt2">+ 12 3456 7890</div>
</div>
</div>
</div>
<div class="ftrw2">
<div class="fttt3">Services</div>
<ul class="list1">
<li>Digital Marketing</li>
<li>Branding</li>
<li>Market Promotion</li>
<li>Digital Campaign</li>
</ul>
</div>
<div class="ftrw2">
<div class="fttt3">About Us</div>
<ul class="list1">
<li>Milestone</li>
<li>Check Our Pricing Plan</li>
<li>Expert Team</li>
<li>Our Exciting News</li>
</ul>
</div>
<div class="ftrw1">
<div class="fttt3">Address</div>
<div class="social">
<div class="fttt1">
123 Lorem Ipsum Street <br>
Jakarta, Indonesia
</div>
<div class="media">
<img class="ftimg3" src="footerfb.png" alt="">
<img class="ftimg3" src="Google.png" alt="">
<img class="ftimg3" src="Twitter.png" alt="">
</div>
</div>
</div>
</div>
</div>
<!-- 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>