-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1448 lines (1343 loc) · 56.4 KB
/
index.html
File metadata and controls
1448 lines (1343 loc) · 56.4 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>
<title>
Lisanslı Bahis Sitesi | Güvenilir Canlı Bahis ve Casino | BetSisi
</title>
<meta
name="description"
content="BetSisi, Curaçao lisansı ile %100 yasal ve güvenli bahis deneyimi sunar. Hızlı ödeme, şeffaf hizmet, 7/24 destek. Hemen deneyin!"
/>
<meta
name="keywords"
content="lisanslı bahis, güvenilir bahis sitesi, yasal bahis Türkiye, BetSisi, canlı destek, hızlı ödeme"
/>
<meta name="author" content="BetSisi Resmi Ekibi" />
<meta name="robots" content="index, follow" />
<meta charset="UTF-8" />
<meta name="language" content="tr" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Content-Language" content="tr-TR" />
<!-- Canonical -->
<link rel="canonical" href="" />
<!-- Open Graph (Sosyal Medya Görünürlüğü) -->
<meta
property="og:title"
content="BetSisi - Lisanslı Bahis ve Casino Sitesi"
/>
<meta
property="og:description"
content="Yasal ve güvenli bahis platformu. Curaçao lisanslı, müşteri odaklı hizmet. Bahis, casino ve bonuslar burada."
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="" />
<meta property="og:image" content="" />
<meta property="og:site_name" content="BetSisi" />
<meta property="og:locale" content="tr_TR" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="BetSisi - Güvenilir Bahis Sitesi" />
<meta
name="twitter:description"
content="Lisanslı bahis deneyimi. Hızlı para çekimi, canlı destek, şeffaf sistem. Kazandıran adres: BetSisi!"
/>
<meta name="twitter:image" content="" />
<meta name="twitter:site" content="@BetSisiresmi" />
<!-- fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Audiowide&display=swap"
rel="stylesheet"
/>
<!-- Site Icon -->
<link rel="icon" href="./assets/img/logoimg1.png" />
<!-- Bootstrap -->
<link rel="stylesheet" href="./assets/css/bootstrap/bootstrap.min.css" />
<!-- Fontawsome -->
<link
rel="stylesheet"
href="./assets/fonts/fontawesome-free-5.15.4-web/css/all.min.css"
/>
<!-- Custom Css -->
<link rel="stylesheet" href="./assets/css/index.css" />
</head>
<body>
<!-- Header -->
<header class="header-main" id="top">
<section
class="d-flex align-items-center justify-content-between m-auto p-2 position-relative w-100 px-lg-5 py-3 bgheader"
style="max-width: 1300px !important"
>
<div class="d-flex align-items-center menu-header">
<a
href="https://Betsisi.com"
class="d-flex align-items-center justify-content-center menu-header-item"
>
<img src="./assets/img/logoimg.png" class="logo" alt="BetSisi" />
</a>
</div>
<div class="align-items-center d-none d-lg-flex flex-row-reverse">
<div
class="d-flex align-items-center justify-content-center menu-header-item menu-header-item-selected"
>
<a href="#home">Ev</a>
</div>
<div
class="d-flex align-items-center justify-content-center menu-header-item"
>
<a href="#service">Hizmetler</a>
</div>
<div
class="d-flex align-items-center justify-content-center menu-header-item"
>
<a href="#about">Hakkımızda </a>
</div>
<div
class="d-flex align-items-center justify-content-center menu-header-item"
>
<a href="#contact">Bize Ulaşın </a>
</div>
</div>
<!-- <div class="d-flex align-items-center justify-content-center">
<div class="d-flex align-items-center justify-content-center header-search">
<img src="./assets/img/Group 40349.png" alt="">
<input type="text" placeholder="جستجو">
</div> -->
<div class="mibtn mr-2">
<a href="https://Betsisi.com">Giriş Yap / Kayıt Ol</a>
</div>
<div
onclick="ShowHambergerMenu()"
class="d-flex align-items-center justify-content-center header-menu-hamber"
>
<i id="baricon" class="fa fa-bars"></i>
</div>
<div
id="hambergerbox"
class="d-flex flex-column align-items-center justify-content-start menu-header-hambergerCLS"
>
<div
class="d-flex align-items-center justify-content-center menu-header-item menu-header-item-selected"
>
<a href="#home">Ev</a>
</div>
<div
class="d-flex align-items-center justify-content-center menu-header-item"
>
<a href="#service">Hizmetler </a>
</div>
<div
class="d-flex align-items-center justify-content-center menu-header-item"
>
<a href="#about">Hakkımızda </a>
</div>
<div
class="d-flex align-items-center justify-content-center menu-header-item"
>
<a href="#contact">Bize Ulaşın </a>
</div>
</div>
</section>
</header>
<!-- Header -->
<!-- Body -->
<section class="w-100">
<section class="intro">
<section
style="max-width: 1300px !important"
class="d-flex flex-column flex-md-row align-items-center justify-content-center m-auto p-2 p-lg-0 position-relative pb-lg-5 pt-5"
>
<div
class="d-flex flex-column align-items-center align-self-center h-100 justify-content-between p-lg-5 w-100"
>
<h1 class="mt-md-3">
<div class="d-flex flex-column w">
<div class="d-flex flex-column flex-lg-row align-items-center">
<span class="mt-4 mt-lg-0 textone m-lg-1">Kumarhane </span>
<span style="color: #ffaae4" class="textsecintro mt-3 mt-lg-0"
>BetSisi</span
>
</div>
</div>
</h1>
<p class="mt-3 w-50 w-md-100">
Bet Sisi, uygun oranları ve futbol maçlarına verdiği güçlü
destekle tanınır ve kullanıcılar küresel turnuvalara ve yerel
liglere bahis oynayabilir.
</p>
<div class="d-flex justify-content-center align-items-center w-100">
<div class="d-flex align-self-md-end mt-4 btnintro">
<a href="https://Betsisi.com">Hadi gidelim </a>
<i class="fa fa-arrow-right"></i>
</div>
</div>
</div>
</section>
</section>
<section
class="conintrobotten mx-auto margintop"
style="max-width: 1300px !important"
>
<section
class="d-flex flex-column flex-lg-row justify-content-around align-items-center p-2"
>
<div
class="d-flex justify-content-center align-items-center p-2 conintrobottenitem py-3 py-lg-2"
>
<img src="./assets/img/face-laugh-relaxed.svg" alt="Ücretsiz" />
<div class="d-flex flex-column ml-2 p-2 pl-0">
<h5>25%</h5>
<p>Ücretsiz Bahis</p>
</div>
</div>
<div class="line"></div>
<div
class="d-flex justify-content-center align-items-center p-2 conintrobottenitem py-3 py-lg-2"
>
<img src="./assets/img/Group 1000003052.svg" alt="Hoş" />
<div class="d-flex flex-column ml-2 p-2 pl-0">
<h5>100%</h5>
<p>Hoş geldin</p>
</div>
</div>
<div class="line"></div>
<div
class="d-flex justify-content-center align-items-center p-2 conintrobottenitem py-3 py-lg-2"
>
<img src="./assets/img/rocket-launch.svg" alt="Spor" />
<div class="d-flex flex-column ml-2 p-2 pl-0">
<h5>20%</h5>
<p>Spor Bölge</p>
</div>
</div>
<div class="line"></div>
<div
class="d-flex justify-content-center align-items-center p-2 conintrobottenitem py-3 py-lg-2"
>
<img src="./assets/img/star-shooting.svg" alt="FreeBet" />
<div class="d-flex flex-column ml-2 p-2 pl-0">
<h5>10%</h5>
<p>FreeBet Şarjı</p>
</div>
</div>
</section>
</section>
<section class="conarticle py-lg-5">
<section
class="d-flex flex-column justify-content-center align-items-center p-2 p-lg-0 m-auto"
style="max-width: 1300px !important"
>
<section
class="w-100 d-flex flex-column-reverse mt-lg-5 flex-lg-row-reverse justify-content-center align-items-stretch bgtranslate"
>
<div
class="w-100 order-3 order-lg-2 d-flex flex-column justify-content-center align-items-center article pt-2 pt-md-0"
>
<div
class="w-100 d-flex flex-column justify-content-center align-items-center"
>
<div
class="w-100 d-flex justify-content-start align-items-center"
>
<h3 class="mt-2 mr-2 bgtext">Bet Sisi</h3>
</div>
<p class="w-100 textmbox">
Bet Sisi, para ödeme ve çekme konusundaki çok iyi performansı
nedeniyle o kadar başarılı oldu ki, tüm kullanıcılar için
güvenilir bir patlama oyunu tanıtmayı ve bu oyun aracılığıyla
çok iyi para kazanmalarına yardımcı olmayı başardı.
Kullanıcılar bu web sitesinde Tether veya Bitcoin kullanarak
hesaplarını şarj edebilirler.
</p>
</div>
<div
class="d-flex justify-content-start align-items-center w-100 endarticle"
>
<div
class="d-flex justify-content-start align-items-center w-100 btnarticle"
style="direction: rtl"
>
<div
class="d-flex align-items-center justify-content-center align-self-md-end mt-4 mt-md-5 btnarticle1"
>
<a href="https://Betsisi.com">Hadi gidelim </a>
</div>
<div
class="d-flex align-items-center justify-content-center align-self-md-end mt-4 mt-md-5 btnarticle1"
>
<a href="https://Betsisi.com">Hakkımızda</a>
</div>
</div>
</div>
</div>
<div
class="w-100 wmd100 order-2 order-lg-3 mt-md-0 d-flex justify-content-center align-items-center conimg mt-4 mt-lg-0"
>
<img
class="w-100 pr-lg-5 Wmd100"
src="./assets/img/boxartickle.svg"
alt="Bet Sisi"
/>
</div>
</section>
</section>
</section>
<section class="conarticle pb-lg-5">
<section
class="d-flex flex-column align-items-center justify-content-center m-auto p-2 p-lg-0"
style="max-width: 1300px !important"
>
<section
class="d-flex flex-row-reverse align-items-center justify-content-between w-100 pt-lg-2"
>
<div
class="d-flex align-items-center justify-content-start textheader"
>
<h3 class="bgtext">Popüler Oyunlar</h3>
</div>
<a
href="https://Betsisi.com"
class="d-flex align-items-center justify-content-between textheaderleft"
>
<i class="fa fa-angle-right" style="padding-bottom: 10px"></i>
<p class="mr-2 mt-1">Tümünü Görüntüle</p>
</a>
</section>
<div
id="carouselExampleIndicators"
class="carousel slide w-100"
data-ride="carousel"
>
<ol class="carousel-indicators">
<li
data-target="#carouselExampleIndicators"
class="cicleslider"
data-slide-to="0"
></li>
<li
data-target="#carouselExampleIndicators"
class="cicleslider active"
data-slide-to="1"
></li>
<li
data-target="#carouselExampleIndicators"
class="cicleslider"
data-slide-to="2"
></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<section
class="d-flex flex-column flex-lg-row justify-content-between align-items-center mt-1 mt-lg-4 w-100"
>
<a
href="https://Betsisi.com"
class="d-flex flex-column align-items-center justify-content-center article1"
>
<img
src="./assets/img/Mask group.svg"
class="w-100"
alt="Poker"
/>
<div
class="d-flex flex-column align-items-center justify-content-center contextblog"
>
<h3 class="mt-2 w-100">Poker</h3>
<p class="mt-1 textbox">
Bu oyun, zenginler arasında tüm dünyada ünlü olan en
popüler casino oyunlarından biridir,
</p>
<div
class="d-flex btnarticle align-items-center justify-content-start w-100 px-0"
>
<span class="fa fa-arrow-right"></span>
<span class="pt-1">Şimdi Oyna</span>
</div>
</div>
</a>
<a
href="https://Betsisi.com"
class="d-flex flex-column align-items-center justify-content-center article1"
>
<img
src="./assets/img/Mask group-1.svg"
class="w-100"
alt="Çevrimiçi Rulet"
/>
<div
class="d-flex flex-column align-items-center justify-content-center contextblog"
>
<h3 class="mt-2 w-100">Çevrimiçi Rulet</h3>
<p class="mt-1 textbox">
Bu oyunda, belirli bir sayıya veya bir sayı aralığına,
kırmızı, siyah ve yeşil renklere ve hatta te
</p>
<div
class="d-flex btnarticle align-items-center justify-content-start w-100 px-0"
>
<span class="fa fa-arrow-right"></span>
<span class="pt-1">Şimdi Oyna</span>
</div>
</div>
</a>
<a
href="https://Betsisi.com"
class="d-flex flex-column align-items-center justify-content-center article1"
>
<img
src="./assets/img/Mask group-2.svg"
class="w-100"
alt="Slot Makinesi"
/>
<div
class="d-flex flex-column align-items-center justify-content-center contextblog"
>
<h3 class="mt-2 w-100">Slot Makinesi</h3>
<p class="mt-1 textbox">
Bu oyunda mekanik bir kola basarak önünüzdeki üç adet
döner makara ile dolu olan plaka
</p>
<div
class="d-flex btnarticle align-items-center justify-content-start w-100 px-0"
>
<span class="fa fa-arrow-right"></span>
<span class="pt-1">Şimdi Oyna</span>
</div>
</div>
</a>
<a
href="https://Betsisi.com"
class="d-flex flex-column align-items-center justify-content-center article1"
>
<img
src="./assets/img/Mask group-3.svg"
class="w-100"
alt="Futbol"
/>
<div
class="d-flex flex-column align-items-center justify-content-center contextblog"
>
<h3 class="mt-2 w-100">Futbol</h3>
<p class="mt-1 textbox">
Bu oyunda, karşı kaleye vurmanız gereken bir topla
oynamak zorundasınız.
</p>
<div
class="d-flex btnarticle align-items-center justify-content-start w-100 px-0"
>
<span class="fa fa-arrow-right"></span>
<span class="pt-1">Şimdi Oyna</span>
</div>
</div>
</a>
</section>
</div>
<div class="carousel-item">
<section
class="d-flex flex-column flex-lg-row justify-content-between align-items-center mt-1 mt-lg-4 w-100"
>
<a
href="https://Betsisi.com"
class="d-flex flex-column align-items-center justify-content-center article1"
>
<img
src="./assets/img/Mask group.svg"
class="w-100"
alt="Poker"
/>
<div
class="d-flex flex-column align-items-center justify-content-center contextblog"
>
<h3 class="mt-2 w-100">Poker</h3>
<p class="mt-1 textbox">
Bu oyun, zenginler arasında tüm dünyada ünlü olan en
popüler casino oyunlarından biridir,
</p>
<div
class="d-flex btnarticle align-items-center justify-content-start w-100 px-0"
>
<span class="fa fa-arrow-right"></span>
<span class="pt-1">Şimdi Oyna</span>
</div>
</div>
</a>
<a
href="https://Betsisi.com"
class="d-flex flex-column align-items-center justify-content-center article1"
>
<img
src="./assets/img/Mask group-1.svg"
class="w-100"
alt="Çevrimiçi Rulet"
/>
<div
class="d-flex flex-column align-items-center justify-content-center contextblog"
>
<h3 class="mt-2 w-100">Çevrimiçi Rulet</h3>
<p class="mt-1 textbox">
Bu oyunda, belirli bir sayıya veya bir sayı aralığına,
kırmızı, siyah ve yeşil renklere ve hatta te
</p>
<div
class="d-flex btnarticle align-items-center justify-content-start w-100 px-0"
>
<span class="fa fa-arrow-right"></span>
<span class="pt-1">Şimdi Oyna</span>
</div>
</div>
</a>
<a
href="https://Betsisi.com"
class="d-flex flex-column align-items-center justify-content-center article1"
>
<img
src="./assets/img/Mask group-2.svg"
class="w-100"
alt="Slot Makinesi"
/>
<div
class="d-flex flex-column align-items-center justify-content-center contextblog"
>
<h3 class="mt-2 w-100">Slot Makinesi</h3>
<p class="mt-1 textbox">
Bu oyunda mekanik bir kola basarak önünüzdeki üç adet
döner makara ile dolu olan plaka
</p>
<div
class="d-flex btnarticle align-items-center justify-content-start w-100 px-0"
>
<span class="fa fa-arrow-right"></span>
<span class="pt-1">Şimdi Oyna</span>
</div>
</div>
</a>
<a
href="https://Betsisi.com"
class="d-flex flex-column align-items-center justify-content-center article1"
>
<img
src="./assets/img/Mask group-3.svg"
class="w-100"
alt="Futbol"
/>
<div
class="d-flex flex-column align-items-center justify-content-center contextblog"
>
<h3 class="mt-2 w-100">Futbol</h3>
<p class="mt-1 textbox">
Bu oyunda, karşı kaleye vurmanız gereken bir topla
oynamak zorundasınız.
</p>
<div
class="d-flex btnarticle align-items-center justify-content-start w-100 px-0"
>
<span class="fa fa-arrow-right"></span>
<span class="pt-1">Şimdi Oyna</span>
</div>
</div>
</a>
</section>
</div>
<div class="carousel-item">
<section
class="d-flex flex-column flex-lg-row justify-content-between align-items-center mt-1 mt-lg-4 w-100"
>
<a
href="https://Betsisi.com"
class="d-flex flex-column align-items-center justify-content-center article1"
>
<img
src="./assets/img/Mask group.svg"
class="w-100"
alt="Poker"
/>
<div
class="d-flex flex-column align-items-center justify-content-center contextblog"
>
<h3 class="mt-2 w-100">Poker</h3>
<p class="mt-1 textbox">
Bu oyun, zenginler arasında tüm dünyada ünlü olan en
popüler casino oyunlarından biridir,
</p>
<div
class="d-flex btnarticle align-items-center justify-content-start w-100 px-0"
>
<span class="fa fa-arrow-right"></span>
<span class="pt-1">Şimdi Oyna</span>
</div>
</div>
</a>
<a
href="https://Betsisi.com"
class="d-flex flex-column align-items-center justify-content-center article1"
>
<img
src="./assets/img/Mask group-1.svg"
class="w-100"
alt="Çevrimiçi Rulet"
/>
<div
class="d-flex flex-column align-items-center justify-content-center contextblog"
>
<h3 class="mt-2 w-100">Çevrimiçi Rulet</h3>
<p class="mt-1 textbox">
Bu oyunda, belirli bir sayıya veya bir sayı aralığına,
kırmızı, siyah ve yeşil renklere ve hatta te
</p>
<div
class="d-flex btnarticle align-items-center justify-content-start w-100 px-0"
>
<span class="fa fa-arrow-right"></span>
<span class="pt-1">Şimdi Oyna</span>
</div>
</div>
</a>
<a
href="https://Betsisi.com"
class="d-flex flex-column align-items-center justify-content-center article1"
>
<img
src="./assets/img/Mask group-2.svg"
class="w-100"
alt="Slot Makinesi"
/>
<div
class="d-flex flex-column align-items-center justify-content-center contextblog"
>
<h3 class="mt-2 w-100">Slot Makinesi</h3>
<p class="mt-1 textbox">
Bu oyunda mekanik bir kola basarak önünüzdeki üç adet
döner makara ile dolu olan plaka
</p>
<div
class="d-flex btnarticle align-items-center justify-content-start w-100 px-0"
>
<span class="fa fa-arrow-right"></span>
<span class="pt-1">Şimdi Oyna</span>
</div>
</div>
</a>
<a
href="https://Betsisi.com"
class="d-flex flex-column align-items-center justify-content-center article1"
>
<img
src="./assets/img/Mask group-3.svg"
class="w-100"
alt="Futbol"
/>
<div
class="d-flex flex-column align-items-center justify-content-center contextblog"
>
<h3 class="mt-2 w-100">Futbol</h3>
<p class="mt-1 textbox">
Bu oyunda, karşı kaleye vurmanız gereken bir topla
oynamak zorundasınız.
</p>
<div
class="d-flex btnarticle align-items-center justify-content-start w-100 px-0"
>
<span class="fa fa-arrow-right"></span>
<span class="pt-1">Şimdi Oyna</span>
</div>
</div>
</a>
</section>
</div>
</div>
</div>
</section>
</section>
<section class="conarticle py-lg-5 mt-2 mt-lg-0" id="service">
<section
class="d-flex flex-column justify-content-center align-items-center p-2 pt-4 p-lg-0 m-auto"
style="max-width: 1300px !important"
>
<section
class="d-flex flex-row-reverse align-items-center justify-content-between w-100 pt-lg-2"
>
<div
class="d-flex align-items-center justify-content-start textheader"
>
<h3 class="bgtext">Hizmetlerimiz</h3>
</div>
<a
href="https://Betsisi.com"
class="d-flex align-items-center justify-content-between textheaderleft"
>
<i class="fa fa-angle-right" style="padding-bottom: 10px"></i>
<p class="mr-2 mt-1">Tümünü Görüntüle</p>
</a>
</section>
<section
class="d-flex justify-content-between align-items-center w-100 flex-column flex-lg-row mt-3 mt-lg-5"
>
<section
class="w-100 boxwork ml-lg-2 d-flex justify-content-center align-items-center flex-column mt-0 mt-lg-4"
>
<a
href="https://Betsisi.com"
class="w-100 d-flex flex-column boxitem"
>
<div
class="d-flex flex-row-reverse align-items-center justify-content-between w-100"
>
<div
class="imgitemg d-flex justify-content-center align-items-center"
>
<img
class="w-100"
src="./assets/img/add-square.svg"
alt="link"
/>
</div>
<h3 class="mt-2">Çeşitli Oyunlar</h3>
</div>
<p class="mt-4 px-3 px-lg-0">
Çeşitli ve heyecan verici oyunlar En yüksek kalitede Rulet,
Blackjack, Pokroslot Oyunlarının tadını çıkarın.
</p>
</a>
</section>
<section
class="w-100 boxwork ml-lg-2 d-flex justify-content-center align-items-center flex-column mt-0 mt-lg-4"
>
<a
href="https://Betsisi.com"
class="w-100 d-flex flex-column boxitem"
>
<div
class="d-flex flex-row-reverse align-items-center justify-content-between w-100"
>
<div
class="imgitemg d-flex justify-content-center align-items-center"
>
<img
class="w-100"
src="./assets/img/add-square.svg"
alt="link"
/>
</div>
<h3 class="mt-2">Hızlı Ödeme</h3>
</div>
<p class="mt-4 px-3 px-lg-0">
Hızlı ve güvenli ödeme Güvenli ve güvenilir yöntemlerle hızlı
para yatırma ve çekme işlemlerini deneyimleyin
</p>
</a>
</section>
<section
class="w-100 boxwork ml-lg-2 d-flex justify-content-center align-items-center flex-column mt-0 mt-lg-4"
>
<a
href="https://Betsisi.com"
class="w-100 d-flex flex-column boxitem"
>
<div
class="d-flex flex-row-reverse align-items-center justify-content-between w-100"
>
<div
class="imgitemg d-flex justify-content-center align-items-center"
>
<img
class="w-100"
src="./assets/img/add-square.svg"
alt="link"
/>
</div>
<h3 class="mt-2">7/24 Müşteri Hizmetleri</h3>
</div>
<p class="mt-4 px-3 px-lg-0">
7/24 Müşteri Hizmetleri Endişesiz bir deneyim için destek
ekibi her zaman yanınızda
</p>
</a>
</section>
</section>
</section>
</section>
<section class="conarticle py-lg-5">
<section
class="d-flex flex-column justify-content-center align-items-center p-2 px-3 p-lg-0 m-auto"
style="max-width: 1300px !important"
>
<section
class="d-flex flex-row-reverse align-items-center justify-content-between w-100 pt-lg-2"
>
<div
class="d-flex align-items-center justify-content-start textheader"
>
<h3 class="bgtext">Makaleler</h3>
</div>
<a
href="https://Betsisi.com"
class="d-flex align-items-center justify-content-between textheaderleft"
>
<i class="fa fa-angle-right" style="padding-bottom: 10px"></i>
<p class="mr-2 mt-1">Tümünü Görüntüle</p>
</a>
</section>
<section
class="w-100 d-flex flex-column mt-lg-5 flex-lg-row justify-content-center align-items-stretch"
style="direction: rtl !important"
>
<div
class="w-100 order-3 order-lg-2 mt-2 mt-lg-0 d-flex flex-column justify-content-between align-items-center article3 pt-2 pt-md-0"
>
<div
class="w-100 d-flex flex-column justify-content-center align-items-center"
>
<div
class="w-100 d-flex justify-content-start align-items-center"
>
<h3 class="mt-2 mr-2 textheaderaritcle">
Ücretsiz İlk Ücret ile Bahis Yapın
</h3>
</div>
<p class="w-100 textmbox">
Bet Sisi, bugüne kadar %100 ve %150 bonuslar sunarak ücretsiz
bahis bölümünde çok iyi performans göstermeyi başaran ana
bahis sitelerinden biridir. Çok özel blast oyunu ile herkes
tarafından tanınan Batland, blast oyunu oynayarak ve spor
bahisleri yaparak kullanıcılarının çok iyi bir gelir elde
etmesi için bir durum yaratmayı başarmıştır. Bitcoin ve Tether
gibi kripto para birimlerinin piyasaya sürülmesiyle birlikte
doğrudan ödeme ağ geçitlerinin kullanılması, Betland'ı İran'ın
tamamındaki ana bahis sitelerinden biri haline getirdi.
Betland, ücretsiz şarjının doğasını korumak için her zaman ona
çeşitli bonuslar sunmaya çalışır, bunlardan %15'i kripto
bonusu ve ilk şarjın %150'si en önemlisidir.
</p>
</div>
<div
class="d-flex justify-content-between align-items-center w-100 endarticle1"
>
<div class="d-flex justify-content-center align-content-center">
<span>yer: Turkey</span>
</div>
<div class="d-flex justify-content-center align-content-center">
<span>tarih: 06/11/2024</span>
</div>
</div>
</div>
<div
class="w-100 wmd100 order-2 order-lg-3 mt-md-0 d-flex justify-content-center align-items-center"
>
<img
class="w-100 pr-lg-5 Wmd100"
src="./assets/img/article.svg"
alt="BetSisi Makalesi"
/>
</div>
</section>
</section>
</section>
<section class="conmessage py-lg-5 py-1 pb-3 mt-lg-5" id="about">
<section
class="d-flex flex-column justify-content-center align-items-center p-2 px-3 pt-lg-4 p-lg-0 m-auto w-100"
style="max-width: 1300px !important"
>
<section
class="d-flex align-items-center justify-content-between w-100 pt-lg-2"
>
<div
class="d-flex align-items-center justify-content-start textheader"
>
<h3 class="">Kullanıcı yorumları</h3>
</div>
<a
href="https://Betsisi.com"
class="d-flex align-items-center justify-content-between textheaderleft"
>
<p class="mr-2 mt-1">Tümünü Görüntüle</p>
<i class="fa fa-angle-right" style="padding-bottom: 10px"></i>
</a>
</section>
<div
id="carouselExampleControls"
class="carousel slide w-100 mt-2 mt-lg-0"
data-ride="carousel"
>
<div class="carousel-inner w-100">
<div class="carousel-item">
<section
class="d-flex justify-content-between align-items-center w-100 mt-lg-5 flex-column flex-md-row"
>
<a
href="https://Betsisi.com"
class="messagebox d-flex flex-column justify-content-between align-items-center"
>
<div
class="w-100 d-flex flex-column flex-md-row justify-content-between align-items-end align-items-lg-center"
>
<div
class="d-flex justify-content-start align-items-center w-100"
>
<img src="./assets/img/Ellipse 25.svg" alt="User" />
<div
class="d-flex flex-column justify-content-start align-items-start ml-3"
>
<div
class="d-flex justify-content-center align-items-center"
>
<img
src="./assets/img/tick1.png"
class="pb-2 mr-1"
alt="*"
/>
<h3>Salon</h3>
</div>
<small>Üyelik 8 ay önce</small>
</div>
</div>
<div
class="d-flex flex-column justify-content-center align-items-end mt-4"
>
<img
class="starmessage"
src="./assets/img/Group 220.png"
alt="Star"
/>
<span class="pt-2">(4.3)</span>
</div>
</div>
<p class="mt-3">
LiveBet Casino'da gördüğüm en iyi şeylerden biri anında ve
sorunsuz para yatırma ve çekme işlemleridir. Ödülleri her
zaman zamanında aldım ve destek çok hızlı yanıt veriyor.
</p>
</a>
<a
href="https://Betsisi.com"
class="messagebox d-flex flex-column justify-content-between align-items-center"
>
<div
class="w-100 d-flex flex-column flex-md-row justify-content-between align-items-end align-items-lg-center"
>
<div
class="d-flex justify-content-start align-items-center w-100"
>
<img src="./assets/img/user2.svg" alt="User" />
<div