-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
798 lines (750 loc) · 47.4 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
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
<!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>Insane Web Studio</title>
<!-- bootstrap -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="assets/css/style.css">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
</head>
<body>
<section id="home">
<div class="row">
<div class="img" id="about">
<img src="assets/images/about.gif" alt="">
</div>
<div class="img" id="service">
<img src="assets/images/service.gif" alt="">
</div>
</div>
<div class="row">
<div class="img" id="work">
<img src="assets/images/work.gif " alt="">
</div>
<div class="img" id="blog">
<img src="assets/images/blog.gif" alt="">
</div>
</div>
<div class="logo" id="logo-div">
<img src="assets/images/IWS-logo.svg" alt="logo" id="logo-img">
<div class="logo-links" id="logo-links">
<a href="#" target="_blank" rel="noopener noreferrer"><i class='bx bxs-basketball'></i></a>
<a href="#" target="_blank" rel="noopener noreferrer"><i class='bx bxl-facebook'></i></a>
<a href="#" target="_blank" rel="noopener noreferrer"><i class='bx bxl-twitter'></i></a>
<a href="#" target="_blank" rel="noopener noreferrer"></i>
<i class='bx bxl-linkedin'></i></a>
<span class="logo-links-close" id="logo-links-close"><i class='bx bx-x'></i></span>
</div>
</div>
</section>
<section id="about-section">
<div class="close-btn" id="close-btn"><i class='bx bx-x close-btn-icon'></i></div>
<div class="row-section">
<div class="section-image"><img src="assets/images/about.gif" alt=""></div>
<div class="section-info">
<h2>A digital agency that is insane about creating an online identity for your brand.</h2>
</div>
</div>
<div class="team-div padding-container">
<div class="heading">
<div class="line"></div>
<div class="heading-name">Meet our team</div>
</div>
<div class="card-row">
<div class="card">
<div class="card-img">
<img src="https://webalar.in/assets/images/resources/team-img2-1.webp" alt="">
<p class="card-img-p">A</p>
</div>
<h2 class="name">Ankush Hazra</h2>
<p class="sub-text">Co Founder</p>
<p class="social-link"> <a href="#" target="_blank" rel="noopener noreferrer"><i
class='bx bxl-twitter'></i></a>
<a href="#" target="_blank" rel="noopener noreferrer"><i class='bx bxl-facebook'></i></a>
<a href="#" target="_blank" rel="noopener noreferrer"><i class='bx bxl-linkedin'></i></a>
</p>
</div>
<div class="card">
<div class="card-img">
<img src="https://webalar.in/assets/images/resources/team-img2-3.webp" alt="">
<p class="card-img-p">M</p>
</div>
<h2 class="name">Moitree Sarkar</h2>
<p class="sub-text">Co Founder</p>
<p class="social-link"> <a href="#" target="_blank" rel="noopener noreferrer"><i
class='bx bxl-twitter'></i></a>
<a href="#" target="_blank" rel="noopener noreferrer"><i class='bx bxl-facebook'></i></a>
<a href="#" target="_blank" rel="noopener noreferrer"><i class='bx bxl-linkedin'></i></a>
</p>
</div>
<div class="card">
<div class="card-img">
<img src="https://webalar.in/assets/images/resources/team-img2-2.webp" alt="">
<p class="card-img-p">P</p>
</div>
<h2 class="name">Prathamesh Bankar</h2>
<p class="sub-text">Sr. Web Developer</p>
<p class="social-link"> <a href="#" target="_blank" rel="noopener noreferrer"><i
class='bx bxl-twitter'></i></a>
<a href="#" target="_blank" rel="noopener noreferrer"><i class='bx bxl-facebook'></i></a>
<a href="#" target="_blank" rel="noopener noreferrer"><i class='bx bxl-linkedin'></i></a>
</p>
</div>
</div>
</div>
<div class="testimonial padding-container">
<div class="heading">
<div class="line"></div>
<div class="heading-name">What our clients say</div>
</div>
<div id="carouselExampleIndicators" class="slide-section carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="slide-item carousel-item active">
<div class="slide-item-main">
<div class="slide-text">
<p>
<i class='bx bxs-quote-left'></i>
Professional services with affordable rates, good customer support & on time delivery.. <br> Highly recommended..
</p>
</div>
<div class="slide-img">
<img src="https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_960_720.png" alt="">
<h3 class="name">Vishal Wakchaure</h3>
<!-- <p class="sub-text">Founder & designer</p> -->
</div>
</div>
</div>
<div class="slide-item carousel-item">
<div class="slide-item-main">
<div class="slide-text">
<p>
<i class='bx bxs-quote-left'></i>
Work well done and in time. Followed up regularly to make sure things are on track. Good value for money - suggest you give them a chane!
</p>
</div>
<div class="slide-img">
<img src="https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_960_720.png" alt="">
<h3 class="name">Akshay Siroya</h3>
<!-- <p class="sub-text">Founder & designer</p> -->
</div>
</div>
</div>
<div class="slide-item carousel-item">
<div class="slide-item-main">
<div class="slide-text">
<p>
<i class='bx bxs-quote-left'></i>
Completed more than 15 websites. Loved the work experience. Professional working and timely service. Must work
</p>
</div>
<div class="slide-img">
<img src="https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_960_720.png" alt="">
<h3 class="name">VMAD Media Pune</h3>
<!-- <p class="sub-text">Founder & designer</p> -->
</div>
</div>
</div>
</div>
</div>
</div>
<div class="client padding-container">
<div class="heading">
<div class="line"></div>
<div class="heading-name">Our Collaborations</div>
</div>
<div class="client-row">
<div class="client-track">
<img class="client-logo" src="assets/images/webalar_logo.png" alt="">
<img class="client-logo" src="assets/images/client-logo.jpeg" alt="">
<img class="client-logo" src="assets/images/client-logo.jpeg" alt="">
<img class="client-logo" src="assets/images/client-logo.jpeg" alt="">
<img class="client-logo" src="assets/images/client-logo.jpeg" alt="">
<img class="client-logo" src="assets/images/client-logo.jpeg" alt="">
</div>
</div>
</div>
<!-- <div class="space">
<div class="heading">
<div class="line"></div>
<div class="heading-name">Our Space</div>
</div>
<div class="space-img">
<img src="assets/images/space1.jpeg" alt="">
<img src="assets/images/space2.jpeg" alt="">
<img src="assets/images/space3.jpeg" alt="">
</div>
</div> -->
<div class="talk">
<h1>Have a project in mind?</h1>
<button class="btn" onclick="showContactDiv()">Let's Talk</button>
</div>
</section>
<!-- work section starts -->
<section id="work-section">
<div class="close-btn" id="close-btn1"><i class='bx bx-x close-btn-icon'></i></div>
<div class="row-section">
<div class="section-image"><img src="assets/images/work.gif" alt=""></div>
<div class="section-info">
<h2>Work that not only intrigues you but makes you fall in love with the possibility of what we can create for your brand. </h2>
</div>
</div>
<div class="work-filters">
<span class="work-item active-work" data-filter="all">All</span>
<span class="work-item" data-filter=".web">Web Design</span>
<span class="work-item" data-filter=".brand">Brand</span>
<!-- <span class="work__item"></span> -->
</div>
<div class="work-container">
<div class="work-card mix web">
<img class="work-img" src="assets/images/space1.jpeg" alt="">
<div class="work-card-info">
<h2>Work Title</h2>
<hr>
<p>Web Development</p>
</div>
</div>
<div class="work-card mix brand">
<img class="work-img" src="assets/images/space3.jpeg" alt="">
<div class="work-card-info">
<h2>Work Title</h2>
<hr>
<p>Web Development</p>
</div>
</div>
<div class="work-card mix web">
<img class="work-img" src="assets/images/space2.jpeg" alt="">
<div class="work-card-info">
<h2>Work Title</h2>
<hr>
<p>Web Development</p>
</div>
</div>
<div class="work-card mix brand">
<img class="work-img" src="assets/images/space1.jpeg" alt="">
<div class="work-card-info">
<h2>Work Title</h2>
<hr>
<p>Web Development</p>
</div>
</div>
<div class="work-card mix web">
<img class="work-img" src="assets/images/space1.jpeg" alt="">
<div class="work-card-info">
<h2>Work Title</h2>
<hr>
<p>Web Development</p>
</div>
</div>
<div class="work-card mix brand">
<img class="work-img" src="assets/images/space3.jpeg" alt="">
<div class="work-card-info">
<h2>Work Title</h2>
<hr>
<p>Web Development</p>
</div>
</div>
<div class="work-card mix web">
<img class="work-img" src="assets/images/space2.jpeg" alt="">
<div class="work-card-info">
<h2>Work Title</h2>
<hr>
<p>Web Development</p>
</div>
</div>
<div class="work-card mix brand">
<img class="work-img" src="assets/images/space1.jpeg" alt="">
<div class="work-card-info">
<h2>Work Title</h2>
<hr>
<p>Web Development</p>
</div>
</div>
</div>
</section>
<div class="work-popup" id="work-popup">
<div class="popup-close-btn" id="popup-close-btn"><i class='bx bx-x close-btn-icon'></i><span> Back to Work Section</span></div>
<div id="work-carousel" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#work-carousel" data-slide-to="0" class="active"></li>
<li data-target="#work-carousel" data-slide-to="1"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="assets/images/pop2.jpg" alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block w-100" src="assets/images/pop1.jpg" alt="Second slide">
</div>
</div>
<a class="carousel-control-prev" href="#work-carousel" role="button" data-slide="prev">
<span class="work-icon carousel-control-prev-icon"></span>
</a>
<a class="carousel-control-next" href="#work-carousel" role="button" data-slide="next">
<span class="work-icon carousel-control-next-icon"></span>
</a>
</div>
<div class="work-popup-info">
<h2>Project Title</h2>
<p>Dolores quibusdam eum itaque est et iusto perspiciatis saepe consequuntur quia occaecati consequatur. dignissimos dolores omnis voluptatum quia totam minus architecto qui assumenda ex aut aut. voluptatem et ex qui iure illum. est rerum eum est corrupti fugiat quas repellendus officia ratione tempore aliquid aspernatur itaque enim. officia dignissimos enim veniam corporis nemo ipsam sit omnis dolorum veniam.</p>
<br>
<p>Dolores quibusdam eum itaque est et iusto perspiciatis saepe consequuntur quia occaecati consequatur. dignissimos dolores omnis voluptatum quia totam minus architecto qui assumenda ex aut aut. voluptatem et ex qui iure illum. est rerum eum est corrupti fugiat quas repellendus officia ratione tempore aliquid aspernatur itaque enim. officia dignissimos enim veniam corporis nemo ipsam sit omnis dolorum veniam.</p>
<br>
<ul>
<li><strong>Client: </strong>Themeforest</li>
<li><strong>Date: </strong>June 2013</li>
</ul>
<br>
<button class="btn">View Website</button>
</div>
</div>
<!-- work section ends -->
<!-- Services section starts -->
<section id="service-section">
<div class="close-btn" id="close-btn2"><i class='bx bx-x close-btn-icon'></i></div>
<div class="row-section">
<div class="section-image"><img src="assets/images/service.gif" alt=""></div>
<div class="section-info">
<h2>We provide services that are going to create an online identity that not only is unique, affordable but is also going to explore new possibilities. We are here to make your brand future-ready.</h2>
</div>
</div>
<div class="service-div padding-container">
<div class="heading">
<div class="line"></div>
<div class="heading-name">Our Services</div>
</div>
<div class="service-container">
<div class="service-card">
<i class='bx bx-code-block'></i>
<h2>Web development</h2>
<p>You go for your business. We will convince people to never leave your website</p>
</div>
<div class="service-card">
<i class='bx bxs-palette'></i>
<h2>UI/UX Design</h2>
<p>There had to be a place where you care about others more. Here it is! Get easy and interactive UI/UX so that people remember your website.</p>
</div>
<div class="service-card">
<i class='bx bx-paint'></i>
<h2>Graphic designing</h2>
<p>Just make efforts to tell us what you want and we will serve it. And the best thing is we won't be having any problem if you flex that you took a graphic designing course by showing our designs.</p>
</div>
<div class="service-card">
<i class='bx bxs-camera'></i>
<h2>Photography services</h2>
<p>Stop downloading HD quality pictures and searching for "watermark remover apps". We will make sure you have best quality photos for your website.</p>
</div>
<div class="service-card">
<i class='bx bxs-pen'></i>
<h2>Content writing</h2>
<p>Trust us!!! We know what the audience wants to see. We will be the lucky cat for your business.</p>
</div>
<div class="service-card">
<i class='bx bxs-video'></i>
<h2>Ad video production</h2>
<p>We won't leave you in middle just after providing your business needs. We will take promotion responsibility as well.</p>
</div>
<div class="service-card">
<i class='bx bx-mobile-alt'></i>
<h2>Digital marketing</h2>
<p>Don't stress yourself learning about all the jargons like SEO, CRO and other stuff about digital marketing. Webalar got you.</p>
</div>
<div class="service-card">
<i class='bx bxs-videos'></i>
<h2>Video editing</h2>
<p>Get yourself in touch with various users of similar domains and you can get funky cool videos that are no less than any professional commercial shoot.</p>
</div>
<div class="service-card">
<i class='bx bxs-movie'></i>
<h2>2D video animation</h2>
<p>Bet you wouldn't want you website to look like a biology book with diagrams. Therefore here we are with fantastic 2D video animation services.</p>
</div>
</div>
</div>
<div class="process-div padding-container">
<div class="heading">
<div class="line"></div>
<div class="heading-name">The Process</div>
</div>
<div class="process-container">
<div class="process-card">
<div class="process-flip">
<i class='bx bx-user'></i>
</div>
<div class="process-card-info">
<h2>01 <span>Consultation</span></h2>
<p>Advice that doesn't make you feel dumb. Our talented team gives the consultation for every content and enhances the quality.</p>
<a class="link">Learn More</a>
</div>
</div>
<div class="process-card">
<div class="process-flip">
<i class='bx bx-conversation'></i>
</div>
<div class="process-card-info">
<h2>02 <span>Discussion</span></h2>
<p>Our aim of discussion isn't success rather we tend to progress.</p>
<a class="link">Learn More</a>
</div>
</div>
<div class="process-card">
<div class="process-flip">
<i class='bx bxl-telegram' ></i>
</div>
<div class="process-card-info">
<h2>03 <span>First draft</span></h2>
<p>Wouldn't you like to have a look at your product's first draft? Can't change it after finalization so better have a prior look.</p>
<a class="link">Learn More</a>
</div>
</div>
</div>
<div class="process-container">
<div class="process-card">
<div class="process-flip">
<i class='bx bxs-flask'></i>
</div>
<div class="process-card-info">
<h2>04 <span>Second Draft</span></h2>
<p>Content looks better after a grooming session.</p>
<a class="link">Learn More</a>
</div>
</div>
<div class="process-card">
<div class="process-flip">
<i class='bx bx-comment'></i>
</div>
<div class="process-card-info">
<h2>05 <span>Reviewing</span></h2>
<p>Not that we doubt our work but we won't be compromising with your work.</p>
<a class="link">Learn More</a>
</div>
</div>
<div class="process-card">
<div class="process-flip">
<i class='bx bxl-telegram' ></i>
</div>
<div class="process-card-info">
<h2>06 <span>Show time</span></h2>
<p>Final product is now ready to be praised by you.</p>
<a class="link">Learn More</a>
</div>
</div>
</div>
</div>
<div class="talk">
<h1>Have a project in mind?</h1>
<button class="btn" onclick="showContactDiv()">Let's Talk</button>
</div>
</section>
<!-- Services section ends -->
<!-- Blog Section Starts -->
<section id="blog-section">
<div class="close-btn" id="close-btn3"><i class='bx bx-x close-btn-icon'></i></div>
<div class="row-section">
<div class="section-image"><img src="assets/images/blog.gif" alt=""></div>
<div class="section-info">
<h2>Blog posts that helps you, educates you and prevents you from investing in long hours on the internet to understand what is best for your brand. </h2>
</div>
</div>
<div class="blog-container padding-container">
<div class="blog-card">
<div class="blog-image">
<img src="assets/images/blog_img.jpg" alt="">
</div>
<div class="blog-info">
<h2>10 things to consider when choosing a web agency</h2>
<p>December 15, 2014 / by <a class="link" href="">admin</a> / In <a class="link" href="">design</a> / <a class="link" href="">4 commetns</a> </p>
</div>
</div>
<div class="blog-card">
<div class="blog-image">
<img src="assets/images/blog_img.jpg" alt="">
</div>
<div class="blog-info">
<h2>Progressive web apps - A guide</h2>
<p>December 15, 2014 / by <a class="link" href="">admin</a> / In <a class="link" href="">design</a> / <a class="link" href="">4 commetns</a> </p>
</div>
</div>
<!-- <div class="blog-card">
<div class="blog-image">
<img src="assets/images/blog_img.jpg" alt="">
</div>
<div class="blog-info">
<h2>You can't do it unless you can imagine it.</h2>
<p>December 15, 2014 / by <a class="link" href="">admin</a> / In <a class="link" href="">design</a> / <a class="link" href="">4 commetns</a> </p>
</div>
</div> -->
</div>
</section>
<!-- Blog - 1 -->
<section class = "blog-pop">
<div class="link blog-back-a">
⟵ Back to all posts
</div>
<div class="pop-text">
<h1>10 things to consider when choosing a web agency</h1>
<p>December 15, 2014 / by <a class="link" href="">admin</a> / In <a class="link" href="">design</a> / <a class="link" href="">4 commetns</a> </p>
<br>
<p>Web agencies are a critical need for businesses and firms now-a-days.<br>A Web Agency is a firm that provides content for an audience on any platform, designs and constructs websites, develops and markets digital experiences, and creates material for an audience on any platform.<br>A web agency helps individuals reach out to other people if they need help with their website or know how to fix it. They can also offer professional advice. Most websites at agencies are small businesses who need a website up on the internet quickly and don't have time to waste. A large portion of these companies are designed for start-ups who do not have the resources or knowledge about creating their own website. Finally, agencies offer online marketing services that help small businesses run efficiently by connecting them with new customers everyday.</p>
<img src="assets/images/space2.jpeg" alt="">
<p>Most web agencies have a large variety of websites to offer. So, before choosing one, keep in mind these considerations:</p>
<ul>
<li>Can you understand the agency's mission?</li>
<li>Does the agency work with a group of experts who help them grow?</li>
<li> How long has the company been around? What is their experience level?</li>
<li>Are they financially stable and reliable?</li>
<li>When you choose your website or app developer, make sure that they have an easy-to-understand pricing model. That includes an overall cost for just this project and then a cost for every phase — design, development, SEO optimization — depending on which are most important to you.</li>
</ul>
<p>Here are a few more points to consider while choosing a web agency because you are choosing it for your own progress and that shouldn’t be compromised.</p>
<!-- <p class="indented-text"><em>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Placeat assumenda amet nobis, laboriosam vel deleniti reprehenderit, molestias obcaecati, debitis inventore corporis illo nostrum id totam ea hic distinctio praesentium adipisci!</em></p> -->
<h5>1. Age and history:</h5>
<p>The age of the agency, as well as the backgrounds of its staff, are critical considerations. Obviously, new digital agencies are popping up all the time, so many of them will still be considered 'new.' If this is the case, you should really analyze the history and experience of their key senior management - and how they may utilize that knowledge to assist your company to accomplish its goals.</p>
<h5>2. Honors:</h5>
<p>Similar to any other business, having awards or being named to prominent lists is a solid indicator that an agency is profitable and well-regarded - but it's crucial not to be swayed by these accolades. Consider what the agency earned the award for, as well as when and how the award was awarded - for example, if it was judged by a team of industry experts, it is likely to carry more significance than a small local business award. On the subject of awards, it's also worth noting that the fact that an agency doesn't have an award doesn't imply it's not successful.
</p>
<h5>3. Price:</h5>
<p>Price is usually a consideration when selecting an agency for your company, but it's also important to evaluate how invoicing and payments would function. Would you have to commit to a year-long project? If you were able to pay on a monthly or quarterly basis? And how do they rationalize the prices they charge? When looking at price, determine whether the agency is willing to negotiate. Remember that many organizations charge exorbitant fees for the services they provide, so there should be some wriggle room there... however whether they choose to take that route is another thing.</p>
<h5>4. Services Fundamentals:</h5>
<p>Another apparent consideration is the agency's key services - and also whether they genuinely connect to what you require. For example, if you require the firm to perform 3D animation work and they only specialize in web design, it naturally follows that they are not the best choice for you. When evaluating core services, it is also vital to examine how long they have been providing these services. Why? Because if an agency has only recently begun supplying social media, it may imply that they do not yet have their procedures and plans in place, which may imply that they will utilize your business and project as an experiment</p>
<h5>5. Attitude/Approach:</h5>
<p>When purchasing items such as clothing or even technology, you will generally evaluate the company and its attitude - and the same logic should apply when selecting an agency. Examine the website: does the information make sense? Is it full of agency jargon and meaningless language? Similarly, how have they behaved whenever you reach out to them? Have they been polite and approachable? Or have they been aloof and abrupt? Remember, you'll be hiring the firm to represent your brand, so you should be capable of connecting to them and have faith in their ability to do so.</p>
<h5>6. Techniques:</h5>
<p>Basically, no agency will be perfectly open about the techniques they need since they don't want to give away their secrets - but a good agency should be willing to reveal a few of their strategies regarding the work they're offering to carry out for your company or organization - and this is where you should pay attention. Are the approaches they describe applicably? And are everything up to date and following best practices?</p>
<h5>7. Quality, Variety, and Outcomes:</h5>
<p>Another factor to examine is the sort of work the agency has done in the past for its customers, as well as the diversity and quality of that work. In addition to the appearance and effectiveness of the job, it is essential to evaluate the outcomes obtained via this labor. For example, an agency may have rebuilt a website that looks beautiful, but if it's difficult to browse and has resulted in a decline in conversion, it's not delivering tremendous ROI.</p>
<h5>8. Clients</h5>
<p>Among the most significant factors to evaluate is the agency's clientele. Big-name clientele will always be impressive, but don't overlook the tiny ones. Often, an agency will have considerably more autonomy and freedom with smaller, less well-known customers - so look at the job they've done for clients and what they've accomplished. When reviewing the client base, consider the sort of clients they have and see if any of them are relevant to your firm.</p>
<h5>9. Location:</h5>
<p>Location is vital to consider because you will have to confront each other at some time, so you must consider the travel that will be required. Usually, things can be completed by email or phone, but occasionally an in-person meeting is required - so if you're extremely far, someone will have to travel extensively to make this partnership work. Knowing the location also makes it easy to determine the genuineness.</p>
<h5>10. Reviews for Your Company:</h5>
<p>Last but not least, you must analyze what the agency recommends for your company and why. Do their recommendations meet or surpass your expectations? And have companies taken the effort to learn about your company and your goals before putting up a proposal? If they haven't taken the time to learn about your company, it may imply that they're merely giving a conventional proposal that won't satisfy your expectations or assist you to reach your goals. Before putting up a unique solution proposal, the finest agencies need to spend time getting to understand you, your organization, and your goals.</p>
<!-- <h3>6 Comments</h3>
<div class="comment-card">
<div class="comment-profile">
<div class="comment-profile-img">
<img src="assets/images/dummy_profile.jpg" alt="">
</div>
<div class="comment-profile-id">
<h5>Amy</h5>
<p>October 15, 2011 at 3:30 pm <a href="" class="link">Reply</a></p>
</div>
</div>
<div class="comment-text">
<p>Laudantium et sint repellat eum necessitatibus aut est rem illo delectus saepe. dolor consectetur et dolorem distinctio beatae doloribus magni ducimus reprehenderit voluptatibus ex officia quia. cum facere est quas provident ea nam quibusdam deserunt quis. error quis nihil ad quia corrupti asperiores labore quis error ut debitis nobis iste. laborum sint qui aut asperiores numquam itaque ea illum</p>
</div>
</div>
<div class="comment-card">
<div class="comment-profile">
<div class="comment-profile-img">
<img src="assets/images/dummy_profile.jpg" alt="">
</div>
<div class="comment-profile-id">
<h5>Amy</h5>
<p>October 15, 2011 at 3:30 pm <a href="" class="link">Reply</a></p>
</div>
</div>
<div class="comment-text">
<p>Laudantium et sint repellat eum necessitatibus aut est rem illo delectus saepe. dolor consectetur et dolorem distinctio beatae doloribus magni ducimus reprehenderit voluptatibus ex officia quia. cum facere est quas provident ea nam quibusdam deserunt quis. error quis nihil ad quia corrupti asperiores labore quis error ut debitis nobis iste. laborum sint qui aut asperiores numquam itaque ea illum</p>
</div>
</div>
<div class="comment-card">
<div class="comment-profile">
<div class="comment-profile-img">
<img src="assets/images/dummy_profile.jpg" alt="">
</div>
<div class="comment-profile-id">
<h5>Amy</h5>
<p>October 15, 2011 at 3:30 pm <a href="" class="link">Reply</a></p>
</div>
</div>
<div class="comment-text">
<p>Laudantium et sint repellat eum necessitatibus aut est rem illo delectus saepe. dolor consectetur et dolorem distinctio beatae doloribus magni ducimus reprehenderit voluptatibus ex officia quia. cum facere est quas provident ea nam quibusdam deserunt quis. error quis nihil ad quia corrupti asperiores labore quis error ut debitis nobis iste. laborum sint qui aut asperiores numquam itaque ea illum</p>
</div>
</div> -->
</div>
<div class="pop-form">
<h3>Your Comment</h3>
<form action="">
<label>Your Name</label>
<input type="text">
<label>Email</label>
<input type="email">
<label>Your Message</label>
<textarea name="" id="" cols="40" rows="4"></textarea>
<input type="button" value="Send Message" class="btn">
</form>
</div>
<div class="link blog-back-a ">
⟵ Back to all posts
</div>
</section>
<!-- Blog - 2 -->
<section class = "blog-pop">
<div class="link blog-back-a">
⟵ Back to all posts
</div>
<div class="pop-text">
<h1>Progressive web apps - A guide</h1>
<p>December 15, 2014 / by <a class="link" href="">admin</a> / In <a class="link" href="">design</a> / <a class="link" href="">4 commetns</a> </p>
<br>
<p>PWAs are web apps that use a variety of particular technologies and common patterns to take advantage of both web and native app features. Web applications, for instance, are more searchable than native apps; accessing a website is simpler and more convenient than installing an app, and web apps may be simply shared by emailing a link. <br>
Native apps, on the other hand, are better integrated with the operating system and so provide a more smooth experience for users. You may install a native programme to make it run offline, and consumers prefer to access their favorite apps by pressing their icons rather than using a browser. <br>
PWAs provide several advantages for users, including the ability to be installed, gradually upgraded, responsively constructed, re-engageable, linkable, discoverable, network independent, and safe.</p>
<img src="assets/images/space2.jpeg" alt="">
<h5>What makes an app PWA?</h5>
<p>As previously said, PWAs are not constructed using a single technology. They represent a new approach to developing web applications, incorporating certain patterns, APIs, and other characteristics. It's not always clear if a web app is a PWA or not. When an app satisfies specific standards or implements a set of provided characteristics, it is deemed a PWA: it operates offline, is installable, is easy to synchronize, can send push notifications, and so on.
</p>
<p>We may make an app more progressive by incorporating numerous technical benefits, resulting in a higher Lighthouse score. However, this is merely a preliminary estimate.</p>
<ul>
<li>Discoverable, so that search engines may find the material.</li>
<li>Installable, allowing it to appear on the device's home screen or app launcher.</li>
<li>Because it is linkable, you may share it simply by providing a URL.</li>
<li>It is network independent, thus it may be used offline or with a slow network connection.
Progressively improved, so it's still usable on previous browsers but completely functioning on the latest.
</li>
<li>It's responsively built to work on every device with a screen and a browser—phones, tablets, computers, TVs, refrigerators, and so on.</li>
<li>Secure means that the connections between the user, the app, and your server are protected against third-party access to sensitive data.</li>
</ul>
<h5>Benefits of PWA:</h5>
<ul>
<li>Strong performance in bad network situations due to low loading time</li>
<li>App-like functionalities in a compact package </li>
<li>App aggregators avoided</li>
<li>instantaneous update.</li>
<li>No intermediary in app download and installation independence in app update process undisturbed digital trip with poor or non-existent connectivity</li>
<li>Better levels of user engagement and conversion</li>
<li>Assistance in search results</li>
<li>A smooth transition from social channels and increased marketing ROI dropped Cross-platform conversion all-in-one processes of development, updates, and product information have grown in cost of user acquisition (CAC).</li>
<li>Modern development strategy.</li>
<li>Pleasant developer encounter.</li>
<li>Working with a headless architecture.</li>
<li>Eliminates the requirement for separate app development for iOS and Android OS, as well as the necessity for paid developer accounts on the App Store or Google Play</li>
<li>PWA platform-agnostic solutions provide backend independence.</li>
</ul>
<p>“Progressive web apps” is not an official term, but rather a generalized term . PWAs are widely being developed in the competitive technical world and we are looking forward to the progress these will go through.
</p>
<!-- <p class="indented-text"><em>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Placeat assumenda amet nobis, laboriosam vel deleniti reprehenderit, molestias obcaecati, debitis inventore corporis illo nostrum id totam ea hic distinctio praesentium adipisci!</em></p> -->
<!-- <h3>6 Comments</h3>
<div class="comment-card">
<div class="comment-profile">
<div class="comment-profile-img">
<img src="assets/images/dummy_profile.jpg" alt="">
</div>
<div class="comment-profile-id">
<h5>Amy</h5>
<p>October 15, 2011 at 3:30 pm <a href="" class="link">Reply</a></p>
</div>
</div>
<div class="comment-text">
<p>Laudantium et sint repellat eum necessitatibus aut est rem illo delectus saepe. dolor consectetur et dolorem distinctio beatae doloribus magni ducimus reprehenderit voluptatibus ex officia quia. cum facere est quas provident ea nam quibusdam deserunt quis. error quis nihil ad quia corrupti asperiores labore quis error ut debitis nobis iste. laborum sint qui aut asperiores numquam itaque ea illum</p>
</div>
</div>
<div class="comment-card">
<div class="comment-profile">
<div class="comment-profile-img">
<img src="assets/images/dummy_profile.jpg" alt="">
</div>
<div class="comment-profile-id">
<h5>Amy</h5>
<p>October 15, 2011 at 3:30 pm <a href="" class="link">Reply</a></p>
</div>
</div>
<div class="comment-text">
<p>Laudantium et sint repellat eum necessitatibus aut est rem illo delectus saepe. dolor consectetur et dolorem distinctio beatae doloribus magni ducimus reprehenderit voluptatibus ex officia quia. cum facere est quas provident ea nam quibusdam deserunt quis. error quis nihil ad quia corrupti asperiores labore quis error ut debitis nobis iste. laborum sint qui aut asperiores numquam itaque ea illum</p>
</div>
</div>
<div class="comment-card">
<div class="comment-profile">
<div class="comment-profile-img">
<img src="assets/images/dummy_profile.jpg" alt="">
</div>
<div class="comment-profile-id">
<h5>Amy</h5>
<p>October 15, 2011 at 3:30 pm <a href="" class="link">Reply</a></p>
</div>
</div>
<div class="comment-text">
<p>Laudantium et sint repellat eum necessitatibus aut est rem illo delectus saepe. dolor consectetur et dolorem distinctio beatae doloribus magni ducimus reprehenderit voluptatibus ex officia quia. cum facere est quas provident ea nam quibusdam deserunt quis. error quis nihil ad quia corrupti asperiores labore quis error ut debitis nobis iste. laborum sint qui aut asperiores numquam itaque ea illum</p>
</div>
</div> -->
</div>
<div class="pop-form">
<h3>Your Comment</h3>
<form action="">
<label>Your Name</label>
<input type="text">
<label>Email</label>
<input type="email">
<label>Your Message</label>
<textarea name="" id="" cols="40" rows="4"></textarea>
<input type="button" value="Send Message" class="btn">
</form>
</div>
<div class="link blog-back-a ">
⟵ Back to all posts
</div>
</section>
<!-- Blog - 3 -->
<!-- Blog Section ends -->
<!-- Contact section starts -->
<section id="contact">
<button id="contact-btn" onclick="showContactDiv()">
Contact
</button>
<div class="contact-div" id="contact-div">
<div class="form">
<form action="" method="post">
<input type="text" placeholder="Name">
<input type="email" name="email" id="email" placeholder="Email">
<input type="text" placeholder="Subject">
<textarea name="msg" id="msg" cols="20" rows="5" placeholder="Message"></textarea>
<input type="button" value="Submit" class="btn">
</form>
</div>
<div class="info">
<p>
<h4>Head Office</h4>41 Dean Street, London, UK</p>
<p>
<h4>Phone:</h4>+86 (03) 9810 4612</p>
<p>
<h4>Fax:</h4>+6102 236338 5456</p>
<p>
<h4>Email:</h4>[email protected]</p>
<p>
<h4>Social Networks</h4>
<span>
<a href="#" target="_blank" rel="noopener noreferrer"><i class='bx bxl-twitter'></i></a>
<a href="#" target="_blank" rel="noopener noreferrer"><i class='bx bxl-facebook'></i></a>
<a href="#" target="_blank" rel="noopener noreferrer"><i class='bx bxl-linkedin'></i></a>
<a href="#" target="_blank" rel="noopener noreferrer"><i class='bx bxs-basketball'></i></a>
</span>
</p>
</div>
</div>
</section>
<!-- Contact section ends -->
<!-- ***************script links here*************** -->
<!-- mixitup js -->
<script src="assets/js/mixitup.min.js"></script>
<!-- custom js -->
<script src="assets/js/script.js"></script>
<!-- bootstrap js -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"
integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
crossorigin="anonymous"></script>
</body>
</html>