-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·1430 lines (1326 loc) · 56.2 KB
/
index.html
File metadata and controls
executable file
·1430 lines (1326 loc) · 56.2 KB
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
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!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">
<meta name="keywords" content="FreeFlo,Machine Learning,Startups,Blockchain,Indian Startups">
<meta name="author" content="FreeFlo">
<meta name="google-site-verification" content="d2XrBM7NUHhNmCZ6f8zlL5QiRH9cwn8XzLcFwmGYi6c" />
<meta name="description" content="FreeFlo is a startup that aims at building products related to Machine Learning, Blockchain and so on to help people.">
<link href="img/logo.png" rel="shortcut icon" type="image/x-icon">
<title>FreeFlo</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/loader.css">
<link rel="stylesheet" href="css/animate.min.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/component.css">
<link rel="stylesheet" href="css/own.css">
<link rel="stylesheet" href="css/owl.theme.css">
<link rel="stylesheet" href="css/owl.carousel.css">
<link rel="stylesheet" href="css/vegas.min.css">
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.0/css/all.css" integrity="sha384-lKuwvrZot6UHsBSfcMvOkWwlCMgc0TaWr+30HWe3a4ltaBwTZhyTEggF5tJv8tbt" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Google web font -->
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,300' rel='stylesheet' type='text/css'>
<script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha256-cCueBR6CsyA4/9szpPfrX3s49M9vUU5BgtiJj06wt/s=" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<style type="text/css">
html {
height: 100%;
}
#total, #home, #contact, #about, #advisors, #news, #gallery
{
background : url(img/bg.jpg);
background-size: cover;
background-position: left;
background-blend-mode: color;
background-repeat: no-repeat;
height: 100%;
}
.techDet
{
background : url(img/bg.jpg);
background-size: cover;
background-position: center;
}
#content-1{
text-align: justify;
font-family: 'Source Sans Pro', sans-serif;
font-size: 1.25em;
top: 20%;
}
#content-2{
text-align: justify;
font-family: 'Source Sans Pro', sans-serif;
font-size: 1.25em;
top: 20%;
}
#home {
height: 100%;
}
.navbar.navbar-default.navbar-fixed-top {
display: none;
}
#contact {
color: black;
}
#navg {
background-color: transparent;
}
.navbar-right li a {
font-weight: 500;
font-family: 'Source Sans Pro', sans-serif;
}
.bounce {
-webkit-border-radius:0%;
-moz-border-radius:0%;
-ms-border-radius:0%;
border-radius:0%;
animation: bounce 2s infinite;
-webkit-animation: bounce 1.6s infinite;
-moz-animation: bounce 2s infinite;
-o-animation: bounce 2s infinite;
}
@-webkit-keyframes bounce {
0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}
40% {-webkit-transform: translateY(-30px);}
60% {-webkit-transform: translateY(-15px);}
}
@-moz-keyframes bounce {
0%, 20%, 50%, 80%, 100% {-moz-transform: translateY(0);}
40% {-moz-transform: translateY(-30px);}
60% {-moz-transform: translateY(-15px);}
}
@-o-keyframes bounce {
0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0);}
40% {-o-transform: translateY(-30px);}
60% {-o-transform: translateY(-15px);}
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
40% {transform: translateY(-30px);}
60% {transform: translateY(-15px);}
}
@media only screen and (max-width: 800px) {
.inner_card {
position: relative;
display: inline-block;
background-color: rgb(255, 255, 255, 0.4);
margin-left: 3%;
margin-top: 2.5%;
margin-bottom: 1.5%;
margin-right: 1%;
width: 45%;
z-index: 100;
-webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
-moz-box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
box-shadow: 0px 23px 28px rgba(0, 0, 0, .25);
}
.inner_card_pm {
position: relative;
display: inline-block;
background-color: rgb(255, 255, 255, 0.4);
margin-left: 3%;
margin-top: 2.5%;
margin-bottom: 1.5%;
margin-right: 1%;
width: 45%;
z-index: 100;
-webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
-moz-box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
box-shadow: 0px 23px 28px rgba(0, 0, 0, .25);
}
#team_content_title, #proj_content_title {
letter-spacing: 3px;
font-size: 40px;
color: black;
text-align: center;
padding: 2%;
}
.inner_card_p {
position: relative;
display: inline-block;
background-color: rgb(255, 255, 255, 0.4);
margin-left: 3%;
margin-top: 3%;
margin-bottom: 2.5%;
margin-right: 1%;
width: 93%;
z-index: 100;
-webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
-moz-box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
box-shadow: 0px 23px 28px rgba(0, 0, 0, .25);
}
.link_div {
width: 90%;
text-align: center;
line-height: 20%;
}
.img_area_p {
width: 400px;
height: 400px;
margin: 4.5em auto;
}
.photu_p {
width: 400px;
height: 400px;
}
.chaotech-logo-area {
width: 600px;
height: 600px;
margin-left: 40px;
}
.chaotech-logo {
width:600px;
height:600px;
}
.go-top {
width: 0;
height: 0;
}
.fa-angle-up {
width: 0;
height: 0;
color: transparent;
}
}
@media only screen and (max-width: 500px) {
.navlogo {
width:150px;
height:150px;
max-width:200px;
max-height: 130px;
margin-bottom:40%
}
.logo-top-section {
max-width:400px;
max-height:400px;
}
#about-box,#comm-box, #cont-box, #team_box, #projects_box {
margin-right:-25px;
}
.my_content {
padding:0px;
margin-left:10px;
}
#title-div, #comm-div, #cont-div, #cont-left, #team-div, #proj-div, .subt{
display:none;
}
#footer-logo {
height:200px;
width:200px;
}
.link_div {
width: 90%;
text-align: center;
line-height: 20%;
}
.ctup-home:before {
content:'\A';
font-size:10px;
}
.inner_card {
position: relative;
display: inline-block;
background-color: rgb(255, 255, 255, 0.4);
margin-left: 3%;
margin-top: 3%;
margin-bottom: 1.5%;
margin-right: 1%;
width: 93%;
z-index: 100;
-webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
-moz-box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
box-shadow: 0px 23px 28px rgba(0, 0, 0, .25);
}
#team_content_title, #proj_content_title {
letter-spacing: 3px;
font-size: 35px;
color: black;
text-align: center;
padding: 2%;
}
.my_title {
font-size: 15px;
font-weight: 500;
transform: rotate(-90deg);
text-transform: uppercase;
color: black;
letter-spacing: 10px;
margin-left: -13%;
position: absolute;
margin-top: 15%;
width: 150px;
z-index: 100;
height: 40px;
}
.inner_card_p {
position: relative;
display: inline-block;
background-color: rgb(255, 255, 255, 0.4);
margin-left: 3%;
margin-top: 3%;
margin-bottom: 2.5%;
margin-right: 1%;
width: 93%;
z-index: 100;
-webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
-moz-box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
box-shadow: 0px 23px 28px rgba(0, 0, 0, .25);
}
.inner_card_pm {
position: relative;
display: inline-block;
background-color: rgb(255, 255, 255, 0.4);
margin-left: 3%;
margin-top: 3%;
margin-bottom: 1.5%;
margin-right: 1%;
width: 93%;
z-index: 100;
-webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
-moz-box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
box-shadow: 0px 23px 28px rgba(0, 0, 0, .25);
}
.img_area {
border-radius: 50%;
width: 150px;
height: 150px;
margin: 4.5em auto;
}
.photu {
border-radius: 50%;
width: 150px;
height: 150px;
}
#footer-logo {
width: 100px;
height: 100px;
}
#rights {
font-size: 13px;
}
.img_area_p {
width: 290px;
height: 290px;
margin: 4.5em auto;
}
.photu_p {
width: 290px;
height: 290px;
}
.mera_table {
margin-left: 25px;
}
.icon_b {
text-decoration: none;
color: black;
font-size: 18px;
font-weight: 700;
text-transform: uppercase;
margin-left: 20px;
}
.icon_A {
text-align: center;
}
.icon_B {
text-align: right;
}
.go-top {
width: 0;
height: 0;
}
.fa-angle-up {
width: 0;
height: 0;
color: transparent;
}
.chaotech-logo-area {
width: 500px;
height: 400px;
margin-left: -50px;
}
.chaotech-logo {
width:500px;
height:400px;
}
}
@media only screen and (max-width: 400px) {
.navlogo {
width:150px;
height:150px;
max-width:200px;
max-height: 130px;
margin-bottom:40%
}
.logo-top-section {
max-width:300px;
max-height:300px;
}
#about-box,#comm-box, #cont-box, #team_box, #projects_box{
margin-right:-25px;
}
.my_content {
padding:0px;
margin-left:10px;
}
#title-div, #comm-div, #cont-div, #cont-left, #team-div, #proj-div {
display:none;
}
.subt {
content:'\A';
}
.ctup-home {
/* content:'\A'; */
font-size: 60px;
}
.oob:before {
content:'\A';
}
#footer-logo {
height:200px;
width:200px;
}
.link_div {
width: 90%;
text-align: center;
line-height: 20%;
}
.my_title {
font-size: 15px;
font-weight: 500;
transform: rotate(-90deg);
text-transform: uppercase;
color: black;
letter-spacing: 10px;
margin-left: -13%;
position: absolute;
margin-top: 15%;
width: 150px;
z-index: 100;
height: 40px;
}
.inner_card {
position: relative;
display: inline-block;
background-color: rgb(255, 255, 255, 0.4);
margin-left: 3%;
margin-top: 3%;
margin-bottom: 1.5%;
margin-right: 1%;
width: 93%;
z-index: 100;
-webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
-moz-box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
box-shadow: 0px 23px 28px rgba(0, 0, 0, .25);
}
.inner_card_pm {
position: relative;
display: inline-block;
background-color: rgb(255, 255, 255, 0.4);
margin-left: 3%;
margin-top: 3%;
margin-bottom: 1.5%;
margin-right: 1%;
width: 93%;
z-index: 100;
-webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
-moz-box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
box-shadow: 0px 23px 28px rgba(0, 0, 0, .25);
}
#team_content_title, #proj_content_title {
letter-spacing: 3px;
font-size: 35px;
color: black;
text-align: center;
padding: 2%;
}
.inner_card_p {
position: relative;
display: inline-block;
background-color: rgb(255, 255, 255, 0.4);
margin-left: 3%;
margin-top: 3%;
margin-bottom: 2.5%;
margin-right: 1%;
width: 93%;
z-index: 100;
-webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
-moz-box-shadow: 0 3px 8px rgba(0, 0, 0, .25);
box-shadow: 0px 23px 28px rgba(0, 0, 0, .25);
}
.img_area {
border-radius: 50%;
width: 150px;
height: 150px;
margin: 4.5em auto;
}
.photu {
border-radius: 50%;
width: 150px;
height: 150px;
}
.img_area_p {
width: 200px;
height: 200px;
margin: 4.5em auto;
}
.photu_p {
width: 200px;
height: 200px;
}
#footer-logo {
width: 100px;
height: 100px;
}
#rights {
font-size: 13px;
}
.mera_table {
margin-left: 25px;
}
.icon_b {
text-decoration: none;
color: black;
font-size: 18px;
font-weight: 700;
text-transform: uppercase;
margin-left: 20px;
}
.icon_A {
text-align: center;
}
.icon_B {
text-align: right;
}
.go-top {
width: 0;
height: 0;
}
.fa-angle-up {
width: 0;
height: 0;
color: transparent;
}
.chaotech-logo-area {
width: 500px;
height: 400px;
margin-left: -65px;
}
.chaotech-logo {
width:500px;
height:400px;
}
}
.fb, .lii, .gh {
padding: 10px;
font-size: 30px;
width: 50px;
text-align: center;
text-decoration: none;
margin: 5px 2px;
border-radius:40px;
}
.fa:hover {
opacity: 0.8;
}
.fb {
background: #3B5998;
color: white;
}
.lii {
background: #007bb5;
color: white;
}
.gh {
background:black;
color: white;
}
.chaotech-logo-area-hor {
width: 500px;
height: 400px;
}
.chaotech-logo {
width:500px;
height:400px;
}
.cta {
margin-left:-20px;
}
</style>
</head>
<script>
$('.collapse').collapse();
</script>
<body id="top" data-spy="scroll" data-offset="50" data-target=".navbar-collapse">
<div id="total">
<!-- Preloader section -->
<div id="preloader">
<div id="status">
<div class="spinner">
<div class="rect1"></div>
<div class="rect2"></div>
<div class="rect3"></div>
<div class="rect4"></div>
<div class="rect5"></div>
</div>
</div>
</div>
<!-- Navigation section -->
<div class="container">
<div class="navbar navbar-default navbar-fixed-top" id="navg" role="navigation">
<div class="container">
<div class="navbar-header">
<button aria-expanded="false" class="navbar-toggle collapsed" data-target="#lol" data-toggle="collapse" type="button">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#top" class="backhome" style="margin-top: -1.8em;"><img class="navlogo" id="topImage" src="img/logoWideBlack.png" width="150px" height="150px"></a>
</div><!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" style="margin-top: 20px;" id="lol">
<ul class="nav navbar-nav navbar-right">
<li><a href="#top" class="backhome"><span>HOME</span></a></li>
<!-- <li><a href="#about" id="hof"><span>HALL OF FAME</span></a></li> -->
<li><a href="#gallery" id="gal"><span>PROJECTS</span></a></li>
<li><a href="#news" id="newsb"><span>COMMUNITY</span></a></li>
<li><a href="#advisors" id="advi"><span>TEAM</span></a></li>
<!-- <li><a href="#tenders" id="ten"><span>TENDERS</span></a></li> -->
<li><a href="#contact" id="cont"><span>CONTACT</span></a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- Home section -->
<section id="home">
<div class="container">
<div class="row">
<div class="col-md-offset-1 col-md-10 col-sm-12 wow fadeInUp" data-wow-delay="1s">
<div class="logo-container" style="margin-top: 2em;">
<h1 class="test" id="main" style="margin-top: 4.5em;"><img class = "logo-top-section" height="450" id="main-logo" src="img/logo.png" width="450" ></h1>
</div>
<h1 class="wow fadeInUp" data-wow-delay="1.5s" style="font-size: 55px;color: black;padding-bottom: 4%;z-index: -100;letter-spacing: 3px;" id="sen"><b>Free</b>Flo</h1>
<a href="#about"><h1 class = "bounce" style="font-size:3em;color: black;"> <i class="fa fa-arrow-circle-down" aria-hidden="true"></i> </h1></a>
<p style="font-size: 15px; font-weight: 600; color: black;">CLICK TO KNOW MORE<p>
<br><br><br>
</div>
</div>
</section>
<!-- About section -->
<section id="about">
<div class="container" >
<div class="row">
<div class="clearfix"></div>
<div class="col-md-12 col-sm-12 wow fadeInUp" data-wow-delay="0.3s" id="about-box">
<div class="section-title text-center" id="title-div">
<p class="my_title">about us</p>
</div>
<div class="my_content">
<h1 class="wow fadeInUp" id="about_content_title"><b>FREE</b>FLO<sub class="subt" id="about_content_subtitle">EST. 2018</sub></h1>
<p id="about_content_para">
We at FreeFlo are on a mission to provide companies with excellent technical assistance. We aim to help companies widen their customer base and expand their business. <br><br>
We are here to bring about a change in the world with our technology. Our technology focuses on serving our customers by building suitable products thereby benefiting the society. Our products are related to Blockchain, Machine Learning and Artificial Intelligence mainly. <br><br>
Freeflo is not only about technology but it is also about operations and customer relationships. As a small startup, we take pride in maintaining client relationships and building them by working together to as a team.
</p>
<h1 class="wow fadeInUp" id="about_content_title"><b>Why</b> Us</h1>
<center><img src="img/question.png" style="width:160px; height:170px;"></center>
<p id="about_content_para">
Tiny but mighty! As a startup we might not have a lot of experience but at FreeFlo, we truly believe that we have what it takes to serve you.
Our team consists of young and smart members that work round the clock to make better products helping you lead a better and happier life.<br><br>
FreeFlo does not just help you procure the products of your choice but we also form partnerships with other startups and organisations in order to assist you in building websites, mobile apps and deployments. Our clients prefer to have us on their tech team as we are known for our top-notch technical skills and hospitality. At FreeFlo, we aim to give you a smooth and hassle-free experience! <br><br>
We have a dedicated team that works on Websites, Applications, Design, Machine Learning, Blockchain, Marketing and Business Development. To know more about our team, you can visit us <a href="#advisors" id="goToTeam">here</a>.
</p>
<h1 class="wow fadeInUp" id="about_content_title"><b>Our <span class="ctup-home">Core</span></b> <span class="ctup-home">Products</span></h1><br>
<center><img src="img/innovation.png" style="width:160px; height:170px;"></center>
<p id="about_content_para">
We are currently working on many products related to Machine Learning, Blockchain and AI. We also build products that belong to none of the aforementioned fields but involve just basic coding.
Our products are here help everyone including developers and common people alike.<br><br>
Currently, we're working on a few Machine Learning and AI based APIs related to text extraction and photo analysis to help companies and developers make smoother applications.<br>
We are also working on our very own blockchain known as Nebula. Apart from that, we have some tools to help people get started with coding as well as some tools that can help you improve the quality of life.
All our products are under constant development.
Week in and week out we make sure that we update our code base for all these projects.<br><br>
<b>And the best part?</b><br>
Most of our projects are open source. We are always looking for ways to improve our products. So, you can have a look at the code and help us make our products better too as your feedback is valuable to us.
To get a better understanding of all our projects, please visit our <a href="#gallery" id="goToProjects">projects</a> page.
</p>
<h1 class="wow fadeInUp" id="about_content_title"><b>About</b> <span class="ctup-home">ChaoTech</span></h1><br>
<center><img src="img/ctonly.png" style="width:320px; height:160px;"></center><br>
<p id="about_content_para">
We at FreeFlo believe in giving back to the community and to make that happen, we have started our very own open source community called ChaoTech.<br>To learn more about ChaoTech, please click <a href="#news" id="goToCommunity">here</a>.
</p>
<h1 class="wow fadeInUp" id="about_content_title"><b>Get In <span class="ctup-home">Touch</span></b> <span class="ctup-home">With Us</span></h1><br>
<center><img src="img/contact-book.png" style="width:200px; height:160px;"></center><br>
<p id="about_content_para">
<b>Have a product review or a feature request? Or do you need sponsorship for an event you're hosting?</b><br>
Feel free to get in touch with us. You can reach out to us via email or contact us through our social media pages. We'd love to hear from you and help you in the best possible way. For further contact information please check the <a href="#contact" id="goToContact">contact</a> page.<br><br>
</p>
</div>
</div>
<!-- team carousel -->
</div>
</div>
<br><br>
</section>
<!-- 1 -->
<section id="gallery" style="padding-top: 15%;padding-bottom: 10%;">
<!-- team carousel --><br/>
<div class="container" >
<div class="row">
<div class="clearfix"></div>
<div class="col-md-12 col-sm-12 wow fadeInUp" data-wow-delay="0.3s" id="projects_box">
<div class="section-title text-center" id="proj-div">
<p class="my_title">projects</p>
</div>
<div class="my_content">
<h1 class="wow fadeInUp" id="proj_content_title" data-wow-delay="1.0s"><b>OUR</b>PROJECTS</h1>
<br>
<p id="about_content_para">
Freeflo is a tech startup with a mission of providing companies quality technical assistance one needs to reach out to a wider customer base and build their business.<br>
Our team is here to change the world with technology and focus on serving people by building products to benefit the society. <br>
</p>
<div class="inner_content">
<div id="arrow">
<i class="fas fa-arrow-left"></i>
</div>
<div class="container" id="start">
<div class="row">
<div class="col-md-5 col-sm-12 col-xs-12 inner_card_pm" id="prods">
<div class="row">
<div class="col-md-5">
<div class="icon_proj"><i class="fas fa-archive"></i></div>
</div>
<div class="col-md-7">
<h1 class="profile_title">PRODUCTS</h1>
<!-- <h5 class="profile_desig">FOUNDER</h5> -->
<p class="profile_desp">In a professional context it often happens that private or corporate clients</p>
</div>
</div>
</div>
<!-- <div class="col-md-1 col-sm-12 col-xs-12"></div> -->
<div class="col-md-5 col-sm-12 col-xs-12 inner_card_pm" id="wapps">
<div class="row">
<div class="col-md-5">
<div class="icon_proj"><i class="fas fa-tablet-alt"></i></div>
</div>
<div class="col-md-7">
<h1 class="profile_title">WEBSITE / APPS</h1>
<!-- <h5 class="profile_desig">CO-FOUNDER</h5> -->
<p class="profile_desp">In a professional context it often happens that private or corporate clients</p>
</div>
</div>
</div>
</div>
</div>
<div class="container" id="products">
<div class="row">
<div class="col-md-10 col-sm-12 col-xs-12 inner_card_p">
<div class="row">
<div class="col-md-3">
<div class="img_area_p"><img class="photu_p" src="img/neb.jpg"></div>
</div>
<div class="col-md-9">
<h1 class="profile_title_p">Nebula</h1>
<p class="profile_desp_p">Nebula is FreeFlo's very own blockchain that's being built from scratch.<br>
For now, we intend to use this only for internal purposes like storing important company data, but we soon plan on releasing it for public use. Stay tuned!<br>
You can find the code of this project <a href="https://github.com/FreeFlowOrg/Nebula">here</a>.
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-10 col-sm-12 col-xs-12 inner_card_p">
<div class="row">
<div class="col-md-3">
<div class="img_area_p"><img class="photu_p" src="img/b2cv.png"></div>
</div>
<div class="col-md-9">
<h1 class="profile_title_p">B2C</h1>
<p class="profile_desp_p">B2C stands for Begin2Code.<br>
B2C is a tool that we've built for coders to use in their beginning stages. One could use this tool to:<br>
1) Indent their code properly<br>
2) Execute their code without running command on command line<br>
3) Perform a syntax lookup incase of any doubts<br>
The code for this project can be found <a href="https://github.com/FreeFlowOrg/Begin2Code">here</a>.
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-10 col-sm-12 col-xs-12 inner_card_p">
<div class="row">
<div class="col-md-3">
<div class="img_area_p"><img class="photu_p" src="img/syn.jpg"></div>
</div>
<div class="col-md-9">
<h1 class="profile_title_p">Telegram SyntaxDB Bot</h1>
<p class="profile_desp_p">Telegram SyntaxDB is a bot that's been deployed on Telegram as the name suggests. This bot can be used by all Telegram users.<br>
The main purpose of this bot is to perform and help you with syntax lookup on Telegram as nowadays, Telegram has become an app where most open programming groups are found.<br>
This bot has been featured on Python India and Python Offtopic groups on Telegram.
Click <a href="https://github.com/FreeFlowOrg/Telegram-Syntaxdb-Bot">here</a> to look at its code.
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-10 col-sm-12 col-xs-12 inner_card_p">
<div class="row">
<div class="col-md-3">
<div class="img_area_p"><img class="photu_p" src="img/mp.jpg"></div>
</div>
<div class="col-md-9">
<h1 class="profile_title_p">Zencash Mining Pool</h1>
<p class="profile_desp_p">Blockchain is about to disrupt the tech universe,just like how the internet did in the 2000s! To obtain maximum benefits of this massive technology, we've started a cryptocurrency mining pool which lets people share their computatiion powers through GPUs/CPUs to mine coins collectively. The rewards for mining are distributed among the miners according to their hashing rate contribution.<br>
We intend on extending this further but for now, it's only zencash.<br>
You can check more details about the pool <a href="http://http://107.173.118.210:8080/">here</a>.<br>
Incase you want to know how to join the pool, then check out <a href="https://github.com/FreeFlowOrg/Mining-Pool-Monitoring-Software">this</a> link.
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-10 col-sm-12 col-xs-12 inner_card_p">
<div class="row">
<div class="col-md-3">
<div class="img_area_p"><img class="photu_p" src="img/synapi.png"></div>
</div>
<div class="col-md-9">
<h1 class="profile_title_p">SyntaxDB Python API</h1>
<p class="profile_desp_p"><a href="https://syntaxdb.com">SyntaxDB</a> is a one stop solution for coders who have just started their journey in the world of coding. One can look for syntax related to various programming languages on this website.<br>
We at FreeFlo, have created a python wrapper for this, in order to help developers integrate this feature of syntax lookup into their applications.
The code for this project can be found <a href="https://github.com/FreeFlowOrg/python-syntaxdb">here</a>.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="container" id="web_apps">
<div class="row">
<div class="col-md-10 col-sm-12 col-xs-12 inner_card_p">
<div class="row">
<div class="col-md-3">
<div class="img_area_p"><img class="photu_p" src="img/oob.png"></div>
</div>
<div class="col-md-9">
<h1 class="profile_title_p">Oob<span class="oob"> Communities</span></h1>
<p class="profile_desp_p">Oobcommunities is an organisation that works in the EdTech field. They look at providing the best possible solutions for a student of any age to learn more and get better at whatever they already know.<br>They conduct workshops and have training centres to help students with the same.<br>
This website is just a start of a long term partnership that we have with Oobcommunities.<br>
There's more to come! Stay tuned!
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-10 col-sm-12 col-xs-12 inner_card_p">
<div class="row">
<div class="col-md-3">
<div class="img_area_p"><img class="photu_p" src="img/tree.png"></div>
</div>
<div class="col-md-9">
<h1 class="profile_title_p">ResearchFlo</h1>
<p class="profile_desp_p">ResearchFlo is a platform that connects scientists, researchers and students from various fields such as Engineering, Medicine and Physical Sciences.<br>
This application is basically an open research publication website that people can use to upload and go through research papers for free.<br>Yes, you read it right! FOR FREE.<br>
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-10 col-sm-12 col-xs-12 inner_card_p">
<div class="row">
<div class="col-md-3">
<div class="img_area_p"><img class="photu_p" src="img/mpsa.jpg"></div>
</div>
<div class="col-md-9">
<h1 class="profile_title_p">Mining Pool Stats App</h1>
<p class="profile_desp_p">This app is for all our fellow miners.<br>
Everyone who's mining using our mining pool for Zencash can constantly check stats about how the mining pool is running using our very own Mining Pool Stats Monitoring app on Android. You can check the code <a href="https://github.com/FreeFlowOrg/Mining-Pool-Stats-App">here</a> and download the apk <a href="https://github.com/FreeFlowOrg/Mining-Pool-Stats-App/release">here</a>.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- <section id="gallery" style="padding-top: 15%;padding-bottom: 10%;">
<br/>
<div class="container" >
<div class="row">
<div class="clearfix"></div>
<div class="col-md-12 col-sm-12 wow fadeInUp" data-wow-delay="0.3s" id="projects_box">
<div class="section-title text-center" id="proj-div">
<p class="my_title">projects</p>
</div>
<div class="my_content">
<h1 class="wow fadeInUp" id="team_content_title" data-wow-delay="1.0s"><b>Our</b> PROJECTS</h1>
<div class="inner_content">
<div class="container">
<div class="row">
<div class="col-md-10 col-sm-12 col-xs-12 inner_card_p">
<div class="row">
<div class="col-md-3">
<div class="img_area_p"><img class="photu_p" src="img/profile.jpg"></div>
</div>
<div class="col-md-9">
<h1 class="profile_title_p">Nebula</h1>
<p class="profile_desp_p">Nebula is FreeFlo's very own blockchain that's being built from scratch.<br>
For now, we intend to use this only for internal purposes like storing important company data, but we soon plan on releasing it for public use. Stay tuned!<br>
You can find the code of this project <a href="https://github.com/FreeFlowOrg/Nebula">here</a>.
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-10 col-sm-12 col-xs-12 inner_card_p">
<div class="row">
<div class="col-md-3">
<div class="img_area_p"><img class="photu_p" src="img/profile.jpg"></div>
</div>
<div class="col-md-9">
<h1 class="profile_title_p">B2C(Begin2Code)</h1>
<p class="profile_desp_p">B2C stands for Begin2Code.<br>
B2C is a tool that we've built for coders to use in their beginning stages. One could use this tool to:<br>
1) Indent their code properly<br>
2) Execute their code without running command on command line<br>
3) Perform a syntax lookup incase of any doubts<br>
The code for this project can be found <a href="https://github.com/FreeFlowOrg/Begin2Code">here</a>.
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-10 col-sm-12 col-xs-12 inner_card_p">
<div class="row">
<div class="col-md-3">
<div class="img_area_p"><img class="photu_p" src="img/profile.jpg"></div>
</div>
<div class="col-md-9">
<h1 class="profile_title_p">Telegram SyntaxDB Bot</h1>
<p class="profile_desp_p">Telegram SyntaxDB is a bot that's been deployed on Telegram as the name suggests. This bot can be used by all Telegram users.<br>
The main purpose of this bot is to perform and help you with syntax lookup on Telegram as nowadays, Telegram has become an app where most open programming groups are found.<br>
This bot has been featured on Python India and Python Offtopic groups on Telegram.
Click <a href="https://github.com/FreeFlowOrg/Telegram-Syntaxdb-Bot">here</a> to look at its code.
</p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-10 col-sm-12 col-xs-12 inner_card_p">
<div class="row">
<div class="col-md-3">
<div class="img_area_p"><img class="photu_p" src="img/profile.jpg"></div>
</div>
<div class="col-md-9">