-
Notifications
You must be signed in to change notification settings - Fork 0
/
report-scam.html
1055 lines (1019 loc) · 51 KB
/
report-scam.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
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>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>OFCOM website</title>
<link rel="icon" href="assets/img/favicon.gif" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"
integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<link href="css/main.css" rel="stylesheet">
<script src="js/vimeo-play.js"></script>
</head>
<body>
<!-- header start -->
<header class="header fixed-top d-flex align-items-center">
<a class="skip-to-content-link" href="#skip" tabindex="0">Skip to main content</a>
<div class="container-fluid d-flex align-items-center justify-content-between">
<div class="logo me-auto me-lg-0">
<a href="index.html"> <img class="brand-logo" src="assets/img/Logonostrap.svg" alt="OfCom" /></a>
</div>
<!-- menu start here -->
<div class="header-item ms-auto">
<div class="menu-overlay">
</div>
<nav class="menu">
<div class="mobile-menu-head">
<div class="go-back"><i class="fa fa-angle-left"></i></div>
<div class="current-menu-title"></div>
<div class="mobile-menu-close">×</div>
</div>
<ul class="menu-main">
<li class="menu-item-has-children">
<a href="#">Topics <i class="fa fa-angle-down"></i></a>
<div class="sub-menu mega-menu mega-menu-column-4">
<div class="list-item">
<h4 class="title d-flex justify-content-between align-items-center">
<a href="phone-int.html" class="sub-topic">Phones and broadband </a>
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 40 40">
<circle cx="20.2449" cy="19.7964" r="19" stroke="#000045" />
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964" stroke="#000045" stroke-width="2"
stroke-linejoin="bevel" />
<path d="M30.6472 20.2964L9.64722 20.2964" stroke="#000045" stroke-width="2"
stroke-linejoin="bevel" />
</svg>
</h4>
<ul>
<li>
<span class="detail-text">Phones and broadband Lorem ipsum dolor sit amet, consectetur adipiscing
elit,
sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation</span>
</li>
</ul>
</div>
<div class="list-item">
<h4 class="title d-flex justify-content-between align-items-center">
<a href="#" class="sub-topic">TV, radio and on-demand</a>
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 40 40">
<circle cx="20.2449" cy="19.7964" r="19" stroke="#000045" />
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964" stroke="#000045" stroke-width="2"
stroke-linejoin="bevel" />
<path d="M30.6472 20.2964L9.64722 20.2964" stroke="#000045" stroke-width="2"
stroke-linejoin="bevel" />
</svg>
</h4>
<ul>
<li>
<span class="detail-text">TV, radio and on-demand Lorem ipsum dolor sit amet, consectetur
adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation</span>
</li>
</ul>
</div>
<div class="list-item">
<h4 class="title d-flex justify-content-between align-items-center">
<a href="" class="sub-topic">Post</a>
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 40 40">
<circle cx="20.2449" cy="19.7964" r="19" stroke="#000045" />
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964" stroke="#000045" stroke-width="2"
stroke-linejoin="bevel" />
<path d="M30.6472 20.2964L9.64722 20.2964" stroke="#000045" stroke-width="2"
stroke-linejoin="bevel" />
</svg>
</h4>
<ul>
<li>
<span class="detail-text">Post Lorem ipsum dolor sit amet, consectetur
adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation</span>
</li>
</ul>
</div>
<div class="list-item">
<h4 class="title d-flex justify-content-between align-items-center">
<a href="" class="sub-topic">Radio</a>
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 40 40">
<circle cx="20.2449" cy="19.7964" r="19" stroke="#000045" />
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964" stroke="#000045" stroke-width="2"
stroke-linejoin="bevel" />
<path d="M30.6472 20.2964L9.64722 20.2964" stroke="#000045" stroke-width="2"
stroke-linejoin="bevel" />
</svg>
</h4>
<ul>
<li>
<span class="detail-text">Radio Lorem ipsum dolor sit amet, consectetur
adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation</span>
</li>
</div>
<div class="list-item">
<h4 class="title d-flex justify-content-between align-items-center">
<a href="" class="sub-topic">Managing the airwaves</a>
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 40 40">
<circle cx="20.2449" cy="19.7964" r="19" stroke="#000045" />
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964" stroke="#000045" stroke-width="2"
stroke-linejoin="bevel" />
<path d="M30.6472 20.2964L9.64722 20.2964" stroke="#000045" stroke-width="2"
stroke-linejoin="bevel" />
</svg>
</h4>
<ul>
<li>
<span class="detail-text">Managing the airwaves Lorem ipsum dolor sit amet, consectetur
adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation</span>
</li>
</div>
<div class="list-item">
<h4 class="title d-flex justify-content-between align-items-center">
<a href="" class="sub-topic">Online safety</a>
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 40 40">
<circle cx="20.2449" cy="19.7964" r="19" stroke="#000045" />
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964" stroke="#000045" stroke-width="2"
stroke-linejoin="bevel" />
<path d="M30.6472 20.2964L9.64722 20.2964" stroke="#000045" stroke-width="2"
stroke-linejoin="bevel" />
</svg>
</h4>
<ul>
<li>
<span class="detail-text">Online safety Lorem ipsum dolor sit amet, consectetur
adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation</span>
</li>
</div>
<div class="list-item">
<h4 class="title d-flex justify-content-between align-items-center">
<a href="" class="sub-topic">Digital services</a>
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 40 40">
<circle cx="20.2449" cy="19.7964" r="19" stroke="#000045" />
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964" stroke="#000045" stroke-width="2"
stroke-linejoin="bevel" />
<path d="M30.6472 20.2964L9.64722 20.2964" stroke="#000045" stroke-width="2"
stroke-linejoin="bevel" />
</svg>
</h4>
<ul>
<li>
<span class="detail-text">Digital services Lorem ipsum dolor sit amet, consectetur
adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation</span>
</li>
</div>
<div class="list-item">
<h4 class="title d-flex justify-content-between align-items-center">
<a href="" class="sub-topic">Media use and attitudes</a>
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 40 40">
<circle cx="20.2449" cy="19.7964" r="19" stroke="#000045" />
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964" stroke="#000045" stroke-width="2"
stroke-linejoin="bevel" />
<path d="M30.6472 20.2964L9.64722 20.2964" stroke="#000045" stroke-width="2"
stroke-linejoin="bevel" />
</svg>
</h4>
<ul>
<li>
<span class="detail-text">Media use and attitudes Lorem ipsum dolor sit amet, consectetur
adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation</span>
</li>
</div>
<div class="w-100 menu-social-icons">
<a href="#" title="Twitter">
<i class="fa-brands fa-twitter"></i>
</a>
<a href="#" title="Facebook">
<i class="fa-brands fa-facebook-f"></i>
</a>
<a href="#" title="LinkedIn">
<i class="fa-brands fa-linkedin"></i>
</a>
<a href="#" title="Youtube">
<i class="fa-brands fa-youtube"></i>
</a>
<a href="#" title="Instagram">
<i class="fa-brands fa-square-instagram"></i>
</a>
<a href="#" title="Tiktok">
<i class="fa-brands fa-tiktok"></i>
</a>
</div>
<div class="multicolor-banner">
<div class="row row-cols-auto g-0 multicolor-strip menu-strip-height">
<div class="bg-blue"></div>
<div class="bg-megenta"></div>
<div class="bg-pink"></div>
<div class="bg-yellow"></div>
<div class="bg-green"></div>
</div>
</div>
</div>
</li>
<li class="menu-item-has-children">
<a href="#"> Ofcom’s work <i class="fa fa-angle-down"></i></a>
<div class="sub-menu mega-menu mega-menu-column-4">
<div class="list-item">
<h4 class="title d-flex justify-content-between align-items-center">
<a href="news-center.html" class="sub-topic">News centre</a>
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 40 40">
<circle cx="20.2449" cy="19.7964" r="19" stroke="#000045" />
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964" stroke="#000045" stroke-width="2"
stroke-linejoin="bevel" />
<path d="M30.6472 20.2964L9.64722 20.2964" stroke="#000045" stroke-width="2"
stroke-linejoin="bevel" />
</svg>
</h4>
<ul>
<li>
<span class="detail-text">News centre Lorem ipsum dolor sit amet, consectetur adipiscing
elit,
sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation
</span>
</li>
</ul>
</div>
<div class="list-item">
<h4 class="title d-flex justify-content-between align-items-center">
<a href="" class="sub-topic">Licences</a>
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 40 40">
<circle cx="20.2449" cy="19.7964" r="19" stroke="#000045" />
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964" stroke="#000045" stroke-width="2"
stroke-linejoin="bevel" />
<path d="M30.6472 20.2964L9.64722 20.2964" stroke="#000045" stroke-width="2"
stroke-linejoin="bevel" />
</svg>
</h4>
<ul>
<li>
<span class="detail-text">Licences Lorem ipsum dolor sit amet, consectetur adipiscing
elit,
sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation
</span>
</li>
</ul>
</div>
<div class="list-item">
<h4 class="title d-flex justify-content-between align-items-center">
<a href="" class="sub-topic">Reports and data</a>
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 40 40">
<circle cx="20.2449" cy="19.7964" r="19" stroke="#000045" />
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964" stroke="#000045" stroke-width="2"
stroke-linejoin="bevel" />
<path d="M30.6472 20.2964L9.64722 20.2964" stroke="#000045" stroke-width="2"
stroke-linejoin="bevel" />
</svg>
</h4>
<ul>
<li>
<span class="detail-text">Reports and data Lorem ipsum dolor sit amet, consectetur adipiscing
elit,
sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation
</span>
</li>
</ul>
</div>
<div class="list-item">
<h4 class="title d-flex justify-content-between align-items-center">
<a href="consultations-statements.html" class="sub-topic">Consultations and statements</a>
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 40 40">
<circle cx="20.2449" cy="19.7964" r="19" stroke="#000045" />
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964" stroke="#000045" stroke-width="2"
stroke-linejoin="bevel" />
<path d="M30.6472 20.2964L9.64722 20.2964" stroke="#000045" stroke-width="2"
stroke-linejoin="bevel" />
</svg>
</h4>
<ul>
<li>
<span class="detail-text">Consultations and statements and data Lorem ipsum dolor sit amet,
consectetur adipiscing
elit,
sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation
</span>
</li>
</div>
<div class="w-100 menu-social-icons">
<a href="#" title="Twitter">
<i class="fa-brands fa-twitter"></i>
</a>
<a href="#" title="Facebook">
<i class="fa-brands fa-facebook-f"></i>
</a>
<a href="#" title="LinkedIn">
<i class="fa-brands fa-linkedin"></i>
</a>
<a href="#" title="Youtube">
<i class="fa-brands fa-youtube"></i>
</a>
<a href="#" title="Instagram">
<i class="fa-brands fa-square-instagram"></i>
</a>
<a href="#" title="Tiktok">
<i class="fa-brands fa-tiktok"></i>
</a>
</div>
<div class="multicolor-banner">
<div class="row row-cols-auto g-0 multicolor-strip menu-strip-height">
<div class="bg-blue"></div>
<div class="bg-megenta"></div>
<div class="bg-pink"></div>
<div class="bg-yellow"></div>
<div class="bg-green"></div>
</div>
</div>
</div>
</li>
<li class="menu-item-has-children">
<a href="#"> Complaints <i class="fa fa-angle-down"></i></a>
<div class="sub-menu mega-menu mega-menu-column-4">
<div class="list-item">
<h4 class="title d-flex justify-content-between align-items-center">
<a href="complaints.html" class="sub-topic">Complaints</a>
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 40 40">
<circle cx="20.2449" cy="19.7964" r="19" stroke="#000045" />
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964" stroke="#000045" stroke-width="2"
stroke-linejoin="bevel" />
<path d="M30.6472 20.2964L9.64722 20.2964" stroke="#000045" stroke-width="2"
stroke-linejoin="bevel" />
</svg>
</h4>
<ul>
<li class="mb-3">Compliants About:</li>
<li><a href="complaints-about.html">TV, radio or on demand services</a></li>
<li><a href="">Mobile, phone or internet services</a></li>
<li><a href="#">Postal services</a></li>
<li><a href="#">Wireless interference</a></li>
<li><a href="#">Video-sharing platform (VSP)</a></li>
<li><a href="#">Complain about something else</a></li>
</ul>
</div>
<div class="list-item">
<ul>
<li class="mb-3"><span class="detail-text">
We may be able to help you complain about or report issues relating to phone, broadband and
postal services, TV, radio and on-demand programmes, interference to wireless devices, or
something you have seen on a video-sharing platform.
</span></li>
<li><a href="#">Text Text</a></li>
<li><a href="#">Text Text</a></li>
</ul>
</div>
<div class="w-100 menu-social-icons">
<a href="#" title="Twitter">
<i class="fa-brands fa-twitter"></i>
</a>
<a href="#" title="Facebook">
<i class="fa-brands fa-facebook-f"></i>
</a>
<a href="#" title="LinkedIn">
<i class="fa-brands fa-linkedin"></i>
</a>
<a href="#" title="Youtube">
<i class="fa-brands fa-youtube"></i>
</a>
<a href="#" title="Instagram">
<i class="fa-brands fa-square-instagram"></i>
</a>
<a href="#" title="Tiktok">
<i class="fa-brands fa-tiktok"></i>
</a>
</div>
<div class="multicolor-banner">
<div class="row row-cols-auto g-0 multicolor-strip menu-strip-height">
<div class="bg-blue"></div>
<div class="bg-megenta"></div>
<div class="bg-pink"></div>
<div class="bg-yellow"></div>
<div class="bg-green"></div>
</div>
</div>
</div>
</li>
<li class="menu-item-has-children">
<a href="#"> About Ofcom <i class="fa fa-angle-down"></i></a>
<div class="sub-menu mega-menu mega-menu-column-4">
<div class="list-item ">
<h4 class="title d-flex justify-content-between align-items-center">
<a href="" class="sub-topic">About Ofcom</a>
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" viewBox="0 0 40 40"
style="fill: white;">
<circle cx="20.2449" cy="19.7964" r="19" stroke="#000045" />
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964" stroke="#000045" stroke-width="2"
stroke-linejoin="bevel" />
<path d="M30.6472 20.2964L9.64722 20.2964" stroke="#000045" stroke-width="2"
stroke-linejoin="bevel" />
</svg>
</h4>
<ul>
<li><a href="#">What is Ofcom?</a></li>
<li><a href="#">How Ofcom is run</a></li>
<li><a href="#">News and updates</a></li>
<li><a href="#">International work</a></li>
<li><a href="#">Contacting Ofcom</a></li>
<li><a href="#">Supplying Ofcom</a></li>
<li><a href="#">Policies and guidelines</a></li>
</ul>
</div>
<div class="list-item">
<h4 class="title visually-hidden">Accessibility</h4>
<ul>
<li><a href="#">Accessibility and diversity</a></li>
<li><a href="#">Annual reports and plans</a></li>
<li><a href="#">Freedom of Information and Data Protection</a></li>
<li><a href="#">About this website</a></li>
<li><a href="#">Copyright and information re-use</a></li>
</ul>
</div>
<div class="list-item">
<ul>
<li class="mb-3"><span class="detail-text">
Optional explanatory text here and / or quick links to popular or topical content. <br>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut
labore. Lorem ipsum dolor sit amet, consectetur. Lorem ipsum dolor sit amet, consectetur.</li>
</ul>
</div>
<div class="list-item">
</div>
<div class="w-100 menu-social-icons">
<a href="#" title="Twitter">
<i class="fa-brands fa-twitter"></i>
</a>
<a href="#" title="Facebook">
<i class="fa-brands fa-facebook-f"></i>
</a>
<a href="#" title="LinkedIn">
<i class="fa-brands fa-linkedin"></i>
</a>
<a href="#" title="Youtube">
<i class="fa-brands fa-youtube"></i>
</a>
<a href="#" title="Instagram">
<i class="fa-brands fa-square-instagram"></i>
</a>
<a href="#" title="Tiktok">
<i class="fa-brands fa-tiktok"></i>
</a>
</div>
<div class="multicolor-banner">
<div class="row row-cols-auto g-0 multicolor-strip menu-strip-height">
<div class="bg-blue"></div>
<div class="bg-megenta"></div>
<div class="bg-pink"></div>
<div class="bg-yellow"></div>
<div class="bg-green"></div>
</div>
</div>
</div>
</li>
</ul>
</nav>
</div>
<!-- menu end here -->
<div class="search-icons d-flex align-items-center order-2 order-lg-1" tabindex="0">
<i class="fas fa-search" id="search-icon"></i>
</div>
<form action="" class="search-form">
<div class="search-box mx-auto">
<input type="search" class="search-box-input" name="" placeholder="What are looking for?" id="search-box">
<label for="search-box" class="fas fa-search d-none"><span class="d-none">Serach</span></label>
<a href="search-results.html" class="fas fa-search gl-search"><span class="d-none">Serach</span></a>
</div>
<h4 class="text-center mt-4">Quick Links:</h4>
<hr>
<div class="search-quick-link mx-auto mt-4">
<div class="row">
<div class="col-6 col-md-3">
<a href="" class="w-100 d-flex justify-content-between align-items-start align-items-start">
<span>Complaints</span>
<i class="fa-solid fa-circle-arrow-right"></i>
</a>
</div>
<div class="col-6 col-md-3">
<a href="" class="w-100 d-flex justify-content-between align-items-start align-items-start">
<span>Mobile and Broadband checker </span>
<i class="fa-solid fa-circle-arrow-right"></i>
</a>
</div>
<div class="col-6 col-md-3">
<a href="" class="w-100 d-flex justify-content-between align-items-start align-items-start">
<span>What is Ofcom</span>
<i class="fa-solid fa-circle-arrow-right"></i>
</a>
</div>
<div class="col-6 col-md-3">
<a href="" class="w-100 d-flex justify-content-between align-items-start align-items-start">
<span>Licences</span>
<i class="fa-solid fa-circle-arrow-right"></i>
</a>
</div>
<div class="col-6 col-md-3">
<a href="" class="w-100 d-flex justify-content-between align-items-start align-items-center">
<span>Newsroom</span>
<i class="fa-solid fa-circle-arrow-right"></i>
</a>
</div>
<div class="col-6 col-md-3">
<a href="" class="w-100 d-flex justify-content-between align-items-start align-items-center">
<span>Consultations</span>
<i class="fa-solid fa-circle-arrow-right"></i>
</a>
</div>
</div>
</div>
<hr>
<div class="w-75 mx-auto mt-4">
<h4 class="text-center mt-4 mb-5">Suggested searches</h4>
<div class="row my-3">
<div class="col-12 col-sm-6 col-md-3 mb-2"><button
class="btn btn-primary-white-border w-100 mb-2 px-4">Example
search</button></div>
<div class="col-12 col-sm-6 col-md-3 mb-2"><button
class="btn btn-primary-white-border w-100 mb-2 px-4">Example
search</button></div>
<div class="col-12 col-sm-6 col-md-3 mb-2"><button
class="btn btn-primary-white-border w-100 mb-2 px-4">Example
search</button></div>
<div class="col-12 col-sm-6 col-md-3 mb-2"><button
class="btn btn-primary-white-border w-100 mb-2 px-4">Example
search</button></div>
</div>
</div>
<hr>
<div class="search-quick-link mx-auto mt-4 mb-5">
<h4 class="text-center mt-4 mb-3">Latest</h4>
<div class="row">
<div class="col-12 col-md-6 col-lg-3">
<div class="info-card news-info">
<img src="assets/img/latest-1.png" class="card-img-small mb-3" alt="...">
<div class="d-flex justify-content-between align-items-start">
<a href="">Lorem ipsum dolor sit</a>
<img class="icon-arrow" src="assets/img/web-icons/Arrow circle - white.svg" alt="">
<img class="icon-arrow-hover" src="assets/img/web-icons/Arrow circle fill.svg" alt="">
</div>
<span class="date">12/12/2022</span>
</div>
</div>
<div class="col-12 col-md-6 col-lg-3">
<div class="info-card news-info">
<img src="assets/img/latest-2.png" class="card-img-small mb-3" alt="...">
<div class="d-flex justify-content-between align-items-start">
<a href="">Lorem ipsum dolor sit</a>
<img class="icon-arrow" src="assets/img/web-icons/Arrow circle - white.svg" alt="">
<img class="icon-arrow-hover" src="assets/img/web-icons/Arrow circle fill.svg" alt="">
</div>
<span class="date">12/12/2022</span>
</div>
</div>
<div class="col-12 col-md-6 col-lg-3">
<div class="info-card news-info">
<img src="assets/img/latest-3.png" class="card-img-small mb-3" alt="...">
<div class="d-flex justify-content-between align-items-start">
<a href="">Lorem ipsum dolor sit</a>
<img class="icon-arrow" src="assets/img/web-icons/Arrow circle - white.svg" alt="">
<img class="icon-arrow-hover" src="assets/img/web-icons/Arrow circle fill.svg" alt="">
</div>
<span class="date">12/12/2022</span>
</div>
</div>
<div class="col-12 col-md-6 col-lg-3">
<div class="info-card news-info">
<img src="assets/img/latest-4.png" class="card-img-small mb-3" alt="...">
<div class="d-flex justify-content-between align-items-start">
<a href="">Lorem ipsum dolor sit</a>
<img class="icon-arrow" src="assets/img/web-icons/Arrow circle - white.svg" alt="">
<img class="icon-arrow-hover" src="assets/img/web-icons/Arrow circle fill.svg" alt="">
</div>
<span class="date">12/12/2022</span>
</div>
</div>
</div>
</div>
</form>
<a href="" class="langauge-change order-1 order-lg-3">Cymraeg</a>
<!-- mobile menu trigger -->
<div class="mobile-menu-trigger order-3 order-lg-2">
<i class="mobile-nav-toggle mobile-nav-show fa-solid fa-bars"></i>
<i class="mobile-nav-toggle mobile-nav-hide d-none fa-solid fa-xmark"></i>
</div>
</div>
</div>
</header>
<main>
<div id="skip" class="visually-hidden">Home page features</div>
<section class="breadcrumb-position text-light">
<div class="row">
<div class="col-12">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="index.html">Home</a></li>
<li class="breadcrumb-item"><a href="#">Level1 title</a></li>
<li class="breadcrumb-item active" aria-current="page">Level2 title</li>
</ol>
</nav>
</div>
</div>
</section>
<section>
<div class="row g-0 hero-banner-narrow blue-bg">
<div class="col-md-2"></div>
<div class="col-10 col-lg-8 mx-auto">
<div class="">
<h2><strong>How to report scam texts and mobile calls to 7726</strong></h2>
</div>
</div>
<div class="col-10 col-md-8 col-lg-2 mx-auto">
<button class="btn btn-primary-white-border my-2 center-icon-btn">
<span>Share this page</span>
<img class="image" src="assets/img/web-icons/share white.svg" alt="share" /></button>
</div>
</div>
</section>
<section>
<div class="row g-0 mt-5">
<div class="col-10 col-sm-8 mx-auto">
<strong>It’s never been more important to protect yourself from scam calls and texts.</strong><br><br>
Criminals often impersonate legitimate organisations in an attempt to dupe their victims and leave them out of
pocket. So it’s important to be extra cautious if you receive a text message about a parcel you may be
expecting, for example, or a call claiming to be from your bank.<br><br>
Ofcom research found that <a href="">eight in ten people</a> experienced some form of phone scam last summer,
but fewer than two in ten reported them to the relevant authorities.<br><br>
But there’s an easy, free service you can use to report suspicious texts or calls you might receive on your
mobile. It’s called 7726.
<h3 class="mt-4">What is 7726?</h3>
7726 is a number that most mobile customers using UK networks can text to report unwanted SMS messages or
phone calls on a mobile. The number ‘7726’ was chosen because it spells ‘SPAM’ on an alphanumeric phone keypad
– that’s a handy way of remembering it.<br><br>
Watch the videos below to learn how to forward scam or spam texts and calls to 7726 on iOS and Android phones.
When you’ve done this, it alerts your mobile provider to investigate the number and potentially block it, if
it’s found to be a nuisance.
</div>
</div>
</section>
<section class="container-xl">
<div class="container-xl">
<div class="row g-0 my-5">
<div class="col-12 mx-auto tab-content">
<h4>What does Ofcom do</h4>
<div class="video-block">
<div class="ratio ratio-16x9 ">
<iframe src="assets/video/MOV_1280_1_4MB.mov" frameborder="0"
allow="accelerometer;clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen="">
</iframe>
</div>
</div>
</div>
</div>
</div>
<div class="ratio ratio-16x9">
<video class="card-img-small" poster="assets/img/fallback-img.png" controls muted>
<source src="assets/video/MOV_1280_1_4MB.mov" type="video/mp4" />
<track label="English" kind="subtitles" srclang="en" src="caption.vtt" default />
</video>
</div>
</section>
<section>
<div class="blue-bg">
<div class="row g-0 mt-5">
<div class="col-10 col-sm-8 mx-auto tab-content">
<div class="ratio ratio-16x9 container tab-pane active" id="video-1">
<iframe id="youtube-id" title="YouTube video"
src="https://www.youtube-nocookie.com/embed/cdVUr-NrXng?start=0" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen></iframe>
</div>
<div class="ratio ratio-16x9 container tab-pane fade" id="video-2">
<video class="card-img-small" poster="assets/img/Media2.png" controls muted controlsList="nodownload">
<source src="assets/video/video.mp4" type="video/mp4" />
<track label="English" kind="subtitles" srclang="en" src="caption.vtt" default />
</video>
<!-- <video src="" class="card-img-top" controls=""></video> -->
</div>
<div class="ratio ratio-16x9 container tab-pane fade" id="video-3">
<iframe id="vimeo-player"
src="https://player.vimeo.com/video/253989945?h=c6db007fe5&color=ef0800&title=0&byline=0&portrait=0"
frameborder="0" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="ratio ratio-16x9 container tab-pane fade" id="video-4">
<video class="card-img-small" poster="assets/img/Media2.png" controls muted>
<source src="assets/video/video.mp4" type="video/mp4" />
<track label="English" kind="subtitles" srclang="en" src="caption.vtt" default />
</video>
</div>
</div>
</div>
</div>
<div class="lightblue-bg py-3" id="video-player">
<div class="row g-0 d-flex justify-content-center">
<div class="col-10 mx-auto">
<div class="row nav video-list">
<div class="col-12 col-md-3">
<a class="nav-link active" data-bs-toggle="pill" href="#video-1">
<img src="./assets/img/related-news-4.png" alt="video-img" />
<div class="video-text">
<span>How to forward a scam text to 7726 on Android</span>
<i class="fa-solid fa-circle-play"></i>
</div>
</a>
</div>
<div class="col-12 col-md-3">
<a class="nav-link" data-bs-toggle="pill" href="#video-2">
<img src="assets/img/Media2.png" alt="media-img" />
<div class="video-text">
<span>How to forward a scam text to 7726 on Android</span>
<i class="fa-solid fa-circle-play"></i>
</div>
</a>
</div>
<div class="col-12 col-md-3">
<a class="nav-link" data-bs-toggle="pill" href="#video-3">
<img src="./assets/img/related-news-2.png" alt="media1-img" />
<div class="video-text">
<span>How to forward a scam text to 7726 on Android</span>
<i class="fa-solid fa-circle-play"></i>
</div>
</a>
</div>
<div class="col-12 col-md-3">
<a class="nav-link " data-bs-toggle="pill" href="#video-4">
<img src="assets/img/Media2.png" alt="media2-img" />
<div class="video-text">
<span>How to forward a scam text to 7726 on Android</span>
<i class="fa-solid fa-circle-play"></i>
</div>
</a>
</div>
<div class="col-12 col-md-3">
<a class="nav-link " data-bs-toggle="pill" href="#video-4">
<img src="assets/img/Media2.png" alt="media2-img" />
<div class="video-text">
<span>How to forward a scam text to 7726 on Android</span>
<i class="fa-solid fa-circle-play"></i>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="row g-0 mt-5">
<div class="col-10 col-sm-8 mx-auto">
<h3 class="mt-4">If you think you've been scammed</h3>
If you think you’ve been the victim of a scam, report it to Action Fraud as soon as possible. You can do this
by calling 0300 123 2040 or visiting the Action Fraud website.<br><br>
Action Fraud is the reporting centre for fraud and cybercrime in England, Wales and Northern Ireland. Reports
of fraud and any other financial crime in Scotland should be made to Police Scotland via 101.
<h3 class="mt-4">More information</h3>
As well as <a href="">scams</a>, check out our guidance on how you can protect yourself from other types of <a
href="">unwanted calls and messages.</a>
</div>
</div>
</section>
<section>
<div class="row g-0 mt-5">
<div class="col-10 col-sm-8 mx-auto">
<div class="feedback-block">
<div class="row align-items-center">
<div class="col-lg-6">
<span> Was this page helpful?</span>
</div>
<div class="col-lg-6">
<button class="btn btn-primary-border me-3">
Yes
</button>
<button class="btn btn-primary-border ms-3">
No
</button>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="gray-bg pb-4 pt-3 mt-5">
<div class="container">
<h3 class="text-center my-5">Related content</h3>
<div class="row">
<div class="col-md-12">
<div class="row teaser-3">
<div class="col">
<div class="info-card active">
<div class="d-flex justify-content-between align-items-start">
<a href="">Lorem ipsum dolor sit</a>
<img class="icon-arrow" src="assets/img/web-icons/Arrow circle.svg" alt="">
<img class="icon-arrow-hover" src="assets/img/web-icons/Arrow circle fill.svg" alt="">
</div>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt
</p>
</div>
</div>
<div class="col">
<div class="info-card">
<div class="d-flex justify-content-between align-items-start">
<a href="">Lorem ipsum dolor sit</a>
<img class="icon-arrow" src="assets/img/web-icons/Arrow circle.svg" alt="">
<img class="icon-arrow-hover" src="assets/img/web-icons/Arrow circle fill.svg" alt="">
</div>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt
</p>
</div>
</div>
<div class="col">
<div class="info-card">
<div class="d-flex justify-content-between align-items-start">
<a href="">Lorem ipsum dolor sit</a>
<img class="icon-arrow" src="assets/img/web-icons/Arrow circle.svg" alt="">
<img class="icon-arrow-hover" src="assets/img/web-icons/Arrow circle fill.svg" alt="">
</div>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="row g-0">
<div class="col-12 d-flex justify-content-center position-relative">
<button class="btn btn-primary button-subscribe">
Subscribe to our mailing list <i class="ms-4 fa-solid fa-arrow-right"></i>
</button>
</div>
<div class="col-12">
<div class="row row-cols-auto g-0 multicolor-strip">
<div class="bg-blue"></div>
<div class="bg-megenta"></div>
<div class="bg-pink"></div>
<div class="bg-yellow"></div>
<div class="bg-green"></div>
</div>
<!-- <img src="assets/img/web-icons/multicolor-banner.svg" alt=""> -->
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<div class="row">
<div class="col-lg-3 col-sm-12 col-12 text-white d-lg-flex d-sm-block d-block">
<section class="mt-lg-4 mt-sm-4 w-100 pt-2 mb-3 social">
<div class="follow fw-bold">Follow us </div>
<ul class="list-unstyled social-icons">
<li class="social-icons-list">
<a class="" href="#" title="Twitter">
<i class="fa-brands fa-twitter"></i>
</a>
</li>
<li class="social-icons-list">
<a class="" href="#" title="Facebook">
<i class="fa-brands fa-facebook-f"></i>
</a>
</li>
<li class="social-icons-list">
<a class="" href="#" title="LinkedIn">
<i class="fa-brands fa-linkedin"></i>
</a>
</li>
<li class="social-icons-list">
<a class="" href="#" title="Youtube">
<i class="fa-brands fa-youtube"></i>
</a>
</li>
<li class="social-icons-list">
<a class="" href="#" title="Instagram">
<i class="fa-brands fa-square-instagram"></i>
</a>
</li>
<li class="social-icons-list">
<a class="" href="#" title="Tiktok">
<i class="fa-brands fa-tiktok"></i>
</a>
</li>
</ul>
</section>
</div>
<div class="col-lg-3 col-sm-4 col-12 text-white">
<section class="mt-lg-4 mt-sm-4 mt-0 pt-lg-2 pt-sm-2 text-lg-start about-ofcom">
<div class="follow fw-bold">About Ofcom </div>
<ul class="list-unstyled">
<li class="">
<a class="text-white " href="#">What is Ofcom?</a>
</li>
<li class="">
<a class="text-white " href="#">Contact us</a>
</li>
<li class="">
<a class="text-white " href="#">Nations and regions</a>
</li>
<li class="">
<a class="text-white " href="#">Jobs</a>
</li>
<li class="">
<a class="text-white " href="#">Media Center</a>
</li>
<li class="">
<a class="text-white " href="#">General privacy statement</a>
</li>
<li class="">
<a class="text-white " href="#">Modern slavery statement</a>
</li>
<li class="">
<a class="text-white " href="#">Our work in Welsh</a>
</li>
</ul>
</section>
</div>
<div class="col-lg-3 col-sm-4 col-12 text-white">
<section class="mt-lg-4 mt-sm-4 mt-0 pt-2 text-lg-start about-ofcom">
<div class="follow fw-bold">Aout this website</div>
<ul class="list-unstyled">
<li class="">
<a class="text-white " href="#">Accessability</a>
</li>
<li class="">
<a class="text-white " href="#">Cookiespolicy</a>
</li>
<li class="">
<a class="text-white " href="#">Terms of use</a>