-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathindex.html
executable file
·776 lines (737 loc) · 40.2 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
<!DOCTYPE html>
<html lang="ZXX">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Expanse.tech | Blockchain for everyone</title>
<meta name="author" content="Expanse">
<meta name="robots" content="index,follow">
<meta name="keywords" content="expanse, blockchain, smart contracts, cloud computer, cryptocurrency, crypto, ethereum">
<meta name="description" content="Expanse is an Ethereum based blockchain platform for smart contracts.">
<meta property="og:url" content="http://www.expanse.tech">
<meta property="og:image" content="http://www.expanse.tech/images/expanse-newsletter-hero.jpg">
<meta property="og:title" content="Expanse.tech" />
<meta property="og:description" content="Ethereum based blockchain platform for smart contracts." />
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- favicon
============================================ -->
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico">
<!-- Google Fonts
============================================ -->
<style>
@import url('https://fonts.googleapis.com/css?family=Muli:300,400,600,700');
</style>
<!-- Bootstrap CSS
============================================ -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- owl.carousel CSS
============================================ -->
<link rel="stylesheet" href="css/owl.carousel.css">
<link rel="stylesheet" href="css/owl.theme.css">
<link rel="stylesheet" href="css/owl.transitions.css">
<!-- slickmenu CSS
============================================ -->
<link rel="stylesheet" href="css/slicknav.css">
<!-- animate CSS
============================================ -->
<link rel="stylesheet" href="css/animate.css">
<!-- normalize CSS
============================================ -->
<link rel="stylesheet" href="css/normalize.css">
<!-- main CSS
============================================ -->
<link rel="stylesheet" href="css/main.css">
<!-- style CSS
============================================ -->
<link rel="stylesheet" href="style.css">
<!-- responsive CSS
============================================ -->
<link rel="stylesheet" href="css/responsive.css">
<!-- modernizr JS
============================================ -->
<script src="js/vendor/modernizr-2.8.3.min.js"></script>
<!-- FontAwesome CDN
============================================ -->
<script src="https://use.fontawesome.com/aea9fc5902.js"></script>
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<!-- Preloader Start
========================-->
<div id='preloader'>
<div id='status'>
<img src='img/ajax-loading.gif' alt='ajax-loading' />
</div>
</div>
<!-- Header Area Start
========================-->
<header id="home">
<div class="main-navigation sticky-header">
<div class="container">
<div class="row">
<!-- logo-area-->
<div class="col-lg-3 col-md-3 col-sm-4 col-xs-6">
<div class="logo-area">
<a href="#">
<img src="img/logo.png" alt="logo">
</a>
</div>
</div>
<!-- mainmenu-area-->
<div class="col-lg-9 col-md-9 col-sm-8 col-xs-6">
<div class="menubar">
<nav>
<ul class="text-right" id="menu">
<li><a href="#home">home</a></li>
<li><a href="#about">about</a></li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">
Mining <span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li><a href="http://pool.expanse.tech/">EXP.POOL</a></li>
<li><a href="http://exp.ethertrench.com/">ethertrench</a></li>
<li><a href="http://exp.hodlpool.com/">HODLPool</a></li>
<li><a href="https://exp.suprnova.cc/">suprnova</a></li>
<li><a href="http://dwarfpool.com/exp">dwarfpool</a></li>
<li><a href="http://exp.akasha-pool.eu/">akasha</a></li>
<li><a href="http://exp.digger.ws/">Digger.ws</a></li>
<li><a href="http://exp.mypool.online/">EXP.MyPool.Online</a></li>
<li><a href="http://exp.mining-pool.fr/">Mining-pool</a></li>
</ul>
</li>
<li><a href="#exchanges">buy</a></li>
<li><a href="http://explorer.expanse.tech">explore</a></li>
<li><a href="http://docs.expanse.tech">docs</a></li>
<li><a href="http://blog.expanse.tech">news</a></li>
<li><a href="#contact">contact</a></li>
</ul>
</nav>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- Header Image area
============================================ -->
<section>
<div class="header-image-area" id="particles-js">
<div class="intro-text">
<h1>welcome to expanse.tech</h1>
<h3>Expanse is <span class="element"></span></h3>
<div class="learnmore">
<a href="http://www.github.com/expanse-org/mist/releases" class="skill-btn">download wallet</a>
</div>
</div>
</div>
</section>
<!-- About Area Start
=================================-->
<section id="about">
<div class="about-area">
<div class="container">
<div class="row">
<!-- about image-area-->
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-12">
<div class="about-image">
<img src="img/about-me.png" alt="about-me">
</div>
</div>
<!-- about text-area-->
<div class="col-lg-8 col-md-8 col-sm-8 col-xs-12">
<div class="about-text">
<!--section heading area-text-->
<div class="portion-heading wow fadeInUp" data-wow-delay="0.1s">
<h3>our story</h3>
</div>
<div class="portion-content">
<p>
Expanse.Tech™ was created as the first stable fork of Ethereum by one of the earliest blockchain developers and cryptocurrency entrepreneurs out there, Christopher Franko. Co-founder James Clayton is also the founder of the Cryptocurrency Collectors Club,
(CCC), which is the largest and most popular Cryptocurrency group on Facebook. Dan Conway, another blockchain expert with extensive experience, soon joined the team as the third founder, bringing a great deal of talent,
balance, and expertise to the project.
</p>
<p>
Expanse was built as a community-based project without an ICO, (Initial Coin Offering), and is blockchain agnostic. The idea is to use cutting-edge blockchain technology to build anything the community and team can imagine—using a Decentralized Autonomous
Organization, (DAO), with a self-funded design to keep it truly decentralized. This way, the Expanse community can evolve and grow while rewarding holders, partners, and investors.
</p>
<p>
The Expanse platform now has a two-year history of consistent growth and stability. Starting out small, but with big ideas, the team is growing and other projects are now coming on board to help make the dream a reality—limited only by the imagination
and talent of all the diverse people around the world involved in the journey. Each new community member and partner brings new ideas and visions for the future. Expanse.Tech plans to be one of the top blockchain projects
in the world. Won’t you join us on this adventure? Start learning more about Expanse today!
</p>
</div>
<!-- about social icon-area-->
<div class="portion-contact-info">
<!-- resume button-area-->
<div class="resume-btn">
<a href="http://www.github.com/expanse-org/mist/releases">wallet <i class="fa fa-download"></i> </a>
</div>
<div class="resume-btn">
<a href="http://www.expanse.tech/docs/roadmap.pdf">roadmap <i class="fa fa-download"></i> </a>
</div>
<div class="resume-btn">
<a href="http://www.expanse.tech/docs/whitepaper.pdf">whitepaper <i class="fa fa-download"></i> </a>
</div>
<div class="resume-btn">
<a href="http://www.expanse.tech/docs/Presskit.zip">presskit <i class="fa fa-download"></i> </a>
</div>
<br><br>
<div class="social-link">
<a href="https://www.facebook.com/groups/expanseofficial"><i class="fa fa-facebook" aria-hidden="true"></i></a>
<a href="https://twitter.com/expanseofficial"><i class="fa fa-twitter" aria-hidden="true"></i> </a>
<a href="https://www.reddit.com/r/ExpanseOfficial"><i class="fa fa-reddit" aria-hidden="true"></i></a>
<a href="https://www.github.com/expanse-org"><i class="fa fa-github" aria-hidden="true"></i> </a>
<a href="http://slack.expanse.tech/"><i class="fa fa-slack" aria-hidden="true"></i> </a>
<a href="https://telegram.me/ExpanseTech"><i class="fa fa-telegram" aria-hidden="true"></i> </a>
<a href="https://bitcointalk.org/index.php?topic=1173722.new#new"><i class="fa fa-bitcoin" aria-hidden="true"></i> </a>
</div>
<div class="portion-heading wow fadeInUp" data-wow-delay="0.1s">
<br><br><br>
<h3>our partners</h3>
</div>
<div class="client-carousel owl-partners">
<div><img src="img/partners/azure.jpg" alt="image"></div>
<div><img src="img/partners/bizspark.jpg" alt="image"></div>
<div><img src="img/partners/centurylink.jpg" alt="image"></div>
<div><img src="img/partners/changelly.jpg" alt="image"></div>
<div><img src="img/partners/chankura.jpg" alt="image"></div>
<div><img src="img/partners/hcblockchain.jpg" alt="image"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Services Area Start
=================================-->
<section id="experience">
<div class="experience">
<div class="container">
<div class="row">
<!--section heading area-text-->
<div class="col-lg-12 col-md-12">
<div class="section-title wow fadeInUp" data-wow-delay="0.1s">
<h4>dApps (decentralized applications)</h4>
</div>
</div>
<!--single work experience area-->
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="experience-item service-work-mb">
<div class="experience-content">
<h6>Expanse Bond System (EBS)</h6>
<h7>Hold Expanse; Earn Expanse.</h7>
<p>The Expanse Bond System, (EBS), is an innovative method to reward buying and holding Expanse tokens for a pre-defined period of time. Unlike traditional currency-based bond systems, EBS uses only native EXP to reward those
who participate. Functioning similar to a self-funded, secured token savings account, it uses smart contract-based simulated staking on the blockchain with decentralized open source parameters. Find out more by visiting
our website at expanse.tech.</p>
<center><img src="img/dapps/ebs.png" width="120px"></center>
</div>
</div>
</div>
<!--single work experience area-->
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="experience-item service-work-mb">
<div class="experience-content">
<h6>Borderless Identity Management</h6>
<p>Borderless.tech is a revolutionary decentralized governance services platform—one that can offer a variety of services for free, or at almost no costs, anywhere and easily. Services such as citizenship, identity, notary,
marriage, asset rights management and more, are easily able to adapt to specific needs of various groups that are choosing their own ways to be free. These dApps are just two examples of where the potential of Expanse
is totally superior to any other decentralized blockchain-based application platform.</p>
<center>
<a href="http://www.borderless.tech/"><img src="img/dapps/borderless.png"></a>
</center>
</div>
</div>
</div>
<!--single work experience area-->
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="experience-item service-work-mb">
<div class="experience-content">
<h6>voting on the blockchain</h6>
<p>The patent-pending blockchain-based voting dApp, VoteLock™, has the power to change the dynamics of elections, instilling trust into the voting process and eliminating the possibility of vote “rigging.” It’s an easy, accurate
and tamper-proof method to employ for elections world-wide. With a true identity system in development, Expanse has prototyped a nearly perfectvoting system. One person, one vote.</p>
<center><img src="img/dapps/votelock.png"></center>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Skill Area Start
=================================-->
<section id="partnerships">
<div class="main-skill-area">
<div class="container">
<div class="row">
<!--section heading area-text-->
<div class="col-lg-12 col-md-12">
<div class="section-title wow fadeInUp" data-wow-delay="0.1s">
<h4>our technology stack</h4>
</div>
</div>
<!--single skill area-->
<div class="col-lg-3 col-md-3 col-sm-6 skill-bottom skill-mobile-mb">
<canvas id="demo-1"></canvas>
<div class="skill-item">
<h5>distributed ledger</h5>
</div>
</div>
<!--single skill area-->
<div class="col-lg-3 col-md-3 col-sm-6 skill-bottom skill-mobile-mb">
<canvas id="demo-2"></canvas>
<div class="skill-item">
<h5>smart contracts</h5>
</div>
</div>
<!--single skill area-->
<div class="col-lg-3 col-md-3 col-sm-6 skill-mobile-mb">
<canvas id="demo-3"></canvas>
<div class="skill-item">
<h5>ethereum virtual machine</h5>
</div>
</div>
<!--single skill area-->
<div class="col-lg-3 col-md-3 col-sm-6">
<canvas id="demo-4"></canvas>
<div class="skill-item">
<h5>cmd line interface</h5>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Work Experience Area Start
=================================-->
<section class="padding-style1" id="exchanges">
<div class="main-service">
<div class="container">
<div class="row">
<!--section heading area-text-->
<div class="col-lg-12 col-md-12">
<div class="section-title wow fadeInUp" data-wow-delay="0.1s">
<h4>Exchanges</h4>
<div align="center">
<A href="https://www.coinmarketcap.com/currencies/expanse/"><img src="img/chart.png"></a>
</div>
</div>
</div>
<!--single service area-->
<div class="col-lg-4 col-md-4 col-sm-4 service-work-mb">
<div class="single-service">
<div class="service-icon">
<i class="fa fa-line-chart" aria-hidden="true"></i>
</div>
<div class="service-content">
<h5><a href="https://poloniex.com/exchange#btc_exp"><img src="img/poloniex.png"></a></h5>
</div>
</div>
</div>
<!--single service area-->
<div class="col-lg-4 col-md-4 col-sm-4 service-work-mb">
<div class="single-service">
<div class="service-icon">
<i class="fa fa-line-chart" aria-hidden="true"></i>
</div>
<div class="service-content">
<h5><a href="https://bittrex.com/Market/Index?MarketName=BTC-EXP"><img src="img/Bittrex.png"></a></h5>
</div>
</div>
</div>
<!--single service area-->
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="single-service">
<div class="service-icon">
<i class="fa fa-line-chart" aria-hidden="true"></i>
</div>
<div class="service-content">
<h5><a href="https://changelly.com/exchange/btc/exp"><img src="img/changelly.png"></a></h5>
</div>
</div>
</div>
<!--single service area-->
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="single-service">
<div class="service-icon">
<i class="fa fa-line-chart" aria-hidden="true"></i>
</div>
<div class="service-content">
<h5><a href="http://www.coinvc.com/market/trade/exp"><img src="img/coinvc-logo.png"></a></h5>
</div>
</div>
</div>
<!--single service area-->
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="single-service">
<div class="service-icon">
<i class="fa fa-line-chart" aria-hidden="true"></i>
</div>
<div class="service-content">
<h5><a href="https://bleutrade.com/exchange/EXP/BTC"><img src="img/bleutrade.png"></a></h5>
</div>
</div>
</div>
<!--single service area-->
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="single-service">
<div class="service-icon">
<i class="fa fa-line-chart" aria-hidden="true"></i>
</div>
<div class="service-content">
<h5><a href="https://alcurex.com/#EXP-BTC"><img src="img/alcurex.png"></a></h5>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonial Slider Area Start
=================================-->
<section id="work">
<div class="testimonial-area">
<div class="container">
<div class="row">
<!--section heading area-text-->
<div class="col-lg-12 col-md-12">
<div class="section-title wow fadeInUp" data-wow-delay="0.1s">
<h4>our team</h4>
</div>
</div>
<!--testimonial slider area-->
<div class="owl-demo">
<!--single testimonial area 1-->
<div class="col-lg-6 col-md-6 full-w">
<div class="item">
<div class="client-img">
<img src="img/team/christopherfranko.jpg" alt="client">
</div>
<div class="client-identity">
<p class="name">Christopher Franko</p>
<p class="profession">Co-founder / Lead Developer</p>
</div>
<div class="testimonial-content">
<p>
An experienced cryptocurrency developer with expert level knowledge of blockchain technology, Chris has a diverse understanding of the industry and a long-standing reputation in the community. Christopher's only mission in life is to empower individuals
with intuitive and cost effective decentralized software.
</p>
</div>
</div>
</div>
<!--single testimonial area 2-->
<div class="col-lg-6 col-md-6 full-w">
<div class="item">
<div class="client-img">
<img src="img/team/james.jpg" alt="client">
</div>
<div class="client-identity">
<p class="name">James Clayton</p>
<p class="profession">Co-founder / Community Manager</p>
</div>
<div class="testimonial-content">
<p>
James is a cryptocurrency analyst and investor who founded one of the largest active communities for Cryptocurrency discussion in the world. James is also one of the founders of Expanse, and an experienced crypto markets advisor, writer, and community
manager, James served on the teams of multiple well-established blockchain technology projects.
</p>
</div>
</div>
</div>
<!--single testimonial area 4-->
<div class="col-lg-6 col-md-6 full-w">
<div class="item">
<div class="client-img">
<img src="img/team/marcia.jpg" alt="client">
</div>
<div class="client-identity">
<p class="name">Marcia Danzeisen</p>
<p class="profession">Marketing Strategy</p>
</div>
<div class="testimonial-content">
<p>
Marcia Danzeisen has led marketing and strategy for some of the largest banks and financial services technology companies in the world. An accomplished writer, Danzeisen saw how crypto currency and blockchain technology have changed the traditional FinTech
world.
</p>
</div>
</div>
</div>
<!--single testimonial area 4-->
<div class="col-lg-6 col-md-6 full-w">
<div class="item">
<div class="client-img">
<img src="img/team/scott.jpg" alt="client">
</div>
<div class="client-identity">
<p class="name">Scott Williams</p>
<p class="profession">Director of Brand Awareness</p>
</div>
<div class="testimonial-content">
<p>
Scott brings a wealth of experience to Expanse with his business consulting and expertise in brand awareness. He has an MBA from Northeastern University, is currently a Global Liaison for Shared Services, a partner for Briefcaseit Network, and he is the
Director of Operations for Borderless Charity that was built on the Expanse platform.
</p>
</div>
</div>
</div>
<!--single testimonial area 4-->
<div class="col-lg-6 col-md-6 full-w">
<div class="item">
<div class="client-img">
<img src="img/team/ahmad.jpg" alt="client">
</div>
<div class="client-identity">
<p class="name">Ahmad Siddiqi</p>
<p class="profession">Advisory Board Member</p>
</div>
<div class="testimonial-content">
<p>
Ahmad Siddiqi is a successful cryptocurrency investor and enthusiast. He’s been actively involved in the crypto economy since 2013. With a 15 year of software development and finance experience under his belt, he is in a unique position to understand
the benefits of crypto assets. He’s currently working on growing the Smart-Contract ecosystem on the Expanse and Ethereum blockchains coupled with cutting edge technologies such as ReactJS and Aspnet core.
</p>
</div>
</div>
</div>
<!--single testimonial area 4-->
<div class="col-lg-6 col-md-6 full-w">
<div class="item">
<div class="client-img">
<img src="img/team/timothysuggs.jpeg" alt="client">
</div>
<div class="client-identity">
<p class="name">Timothy Suggs</p>
<p class="profession">Advisory Board Member</p>
</div>
<div class="testimonial-content">
<p>
Timothy Suggs is a computer software entrepreneur that specializes in Web and TV Video Production, web development and refreshing Internet Marketing (PPC/SEO/Social). Timothy is also experienced with software and Web Application development, Internet
Marketing Strategy and Marketing Consulting.
</p>
</div>
</div>
</div>
<!--single testimonial area 4-->
<div class="col-lg-6 col-md-6 full-w">
<div class="item">
<div class="client-img">
<img src="img/team/maurice.jpg" alt="client">
</div>
<div class="client-identity">
<p class="name">Maurice Beutnagel</p>
<p class="profession">Advisory Board Member</p>
</div>
<div class="testimonial-content">
<p>
Maurice Beutnagel holds a masters degree in innovation management and has been helping companies in different industries (space, insurance, gaming) to grow their business. Focus is on implementing new products and services in the market. Over 10 years
of investing experience. Sees cryptos as one of the most promising sectors moving forward.
</p>
</div>
</div>
</div>
<!--single testimonial area 4-->
<div class="col-lg-6 col-md-6 full-w">
<div class="item">
<div class="client-img">
<img src="img/team/noimg.png" alt="client">
</div>
<div class="client-identity">
<p class="name">Soopnon</p>
<p class="profession">Chinese Ambassador</p>
</div>
<div class="testimonial-content">
<p>
Soopnon is the Chinese Ambassador from Hongico.com, he will be working with the Expanse along with his team of marketers in China to spread the news about Expanse, start discussions in China, translate Newsletters, Announcements, and work on getting Expanse
added to Chinese Exchanges. Soopnon has worked with Supernet, PIVX, Komodo, and has extensive experience with making projects a success in China.
</p>
</div>
</div>
</div>
<!--single testimonial area 4-->
<div class="col-lg-6 col-md-6 full-w">
<div class="item">
<div class="client-img">
<img src="img/team/asim.png" alt="client">
</div>
<div class="client-identity">
<p class="name">Asim Ashfaq</p>
<p class="profession">Senior Developer</p>
</div>
<div class="testimonial-content">
<p>
A cryptocurrency enthusiast by heart, Asim is passionate about creating next generation decentralized apps. He has a vast experience working as a full stack developer in some of the most challenging environments where he helped solve complex problems.
Asim, along with his team, aims to make Expanse more prevalent and more accessible for a wider audience. As a hobby, he also runs a 30-GPU mining rig at home.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Area Start
=================================-->
<section id="contact">
<div class="contact-area">
<div class="container">
<div class="row">
<!--section heading area-text-->
<div class="col-lg-12 col-md-12">
<div class="section-title wow fadeInUp" data-wow-delay="0.1s">
<h4>get in touch</h4>
</div>
</div>
<!--contact form area-->
<div class="col-lg-8 col-md-8 col-sm-8">
<div class="row">
<form action="mailsender.php" method="post">
<div class="col-lg-6 col-md-6 padding-reduce">
<div class="form-group">
<input type="text" class="form-control" id="text" name="yname" placeholder="Your Name" required>
</div>
</div>
<div class="col-lg-6 col-md-6">
<div class="form-group">
<input type="email" class="form-control" id="email" name="yemail" placeholder="Type Your Email" required>
</div>
</div>
<div class="col-lg-12 col-md-12">
<div class="form-group">
<textarea class="form-control" rows="7" id="comment" name="ycomment" placeholder="Write Message" required></textarea>
</div>
</div>
<div class="col-lg-12 col-md-12">
<div class="submit-btn">
<input type="submit" value="send" id="send">
</div>
</div>
</form>
</div>
</div>
<!--contact info area-->
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="contact-info">
<h5>contact info</h5>
<p>If you have any questions or would like to get in contact with someone from our team use this form.</p>
<address>
www.expanse.tech<br>
Call me +1(252)495-0363 <br>
P.O. Box 2703, Washington, NC. USA
</address>
<div class="social-link">
<a href="https://www.facebook.com/groups/expanseofficial"><i class="fa fa-facebook" aria-hidden="true"></i></a>
<a href="https://twitter.com/expanseofficial"><i class="fa fa-twitter" aria-hidden="true"></i> </a>
<a href="https://www.reddit.com/r/ExpanseOfficial"><i class="fa fa-reddit" aria-hidden="true"></i></a>
<a href="https://www.github.com/expanse-org"><i class="fa fa-github" aria-hidden="true"></i> </a>
<a href="http://slack.expanse.tech/"><i class="fa fa-slack" aria-hidden="true"></i> </a>
<a href="https://telegram.me/ExpanseTech"><i class="fa fa-telegram" aria-hidden="true"></i> </a>
<a href="https://bitcointalk.org/index.php?topic=1173722.new#new"><i class="fa fa-bitcoin" aria-hidden="true"></i> </a>
</div>
</div>
</div>
</div>
<div class="portion-heading wow fadeInUp" data-wow-delay="0.1s">
<br><br>
<center>
<h3>upcoming events</h3></center>
</div>
<div class="portion-content">
<div class="list-group">
<a href="#" class="list-group-item">
<h4 class="list-group-item-heading">Collision 2017</h4>
<p class="list-group-item-text">May 2-4, 2017 <br> New Orleans, USA</p>
</a>
</div>
<div class="list-group">
<a href="#" class="list-group-item">
<h4 class="list-group-item-heading">Consensus</h4>
<p class="list-group-item-text">May 22-24, 2017 <br> NYC, USA</p>
</a>
</div>
<div class="list-group">
<a href="#" class="list-group-item">
<h4 class="list-group-item-heading">Token Summit</h4>
<p class="list-group-item-text">May 25, 2017 <br> NYC, USA</p>
</a>
</div>
<div class="list-group">
<a href="#" class="list-group-item">
<h4 class="list-group-item-heading">Money Conf</h4>
<p class="list-group-item-text">June 6th, 2017 <br> NYC, USA</p>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Footer Area Start
=================================-->
<footer>
<div class="main-footer">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12">
<div class="copyright-text text-right">
<p>@ copyright all right reserved by | expanse.tech</p>
</div>
</div>
</div>
</div>
<div id="scrollUp"></div>
</div>
</footer>
<!-- All JS Start
=================================-->
<!-- jquery
============================================ -->
<script src="js/vendor/jquery-1.12.4.min.js"></script>
<!-- bootstrap JS
============================================ -->
<script src="js/bootstrap.min.js"></script>
<!-- wow JS
============================================ -->
<script src="js/wow.min.js"></script>
<!-- typed JS
============================================ -->
<script src="js/typed.js"></script>
<!-- slickmenu JS
============================================ -->
<script src="js/jquery.slicknav.min.js"></script>
<!-- owl.carousel JS
============================================ -->
<script src="js/owl.carousel.min.js"></script>
<!-- scrollUp JS
============================================ -->
<script src="js/jquery.scrollUp.min.js"></script>
<!-- Particles JS
============================================ -->
<script src="js/particles.js"></script>
<script src="js/app.js"></script>
<!-- Skill JS
============================================ -->
<script src="js/waterbubble.js"></script>
<!-- plugins JS
============================================ -->
<script src="js/plugins.js"></script>
<!-- main JS
============================================ -->
<script src="js/main.js"></script>
<script>
(function(i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function() {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-99073881-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>