-
Notifications
You must be signed in to change notification settings - Fork 0
/
report-scam.html
865 lines (833 loc) · 41.6 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
<!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">
</head>
<body>
<!-- header start -->
<header class="header fixed-top d-flex align-items-center">
<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">
<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>
<span class="me-auto ms-2">Online safety</span>
</h4>
<ul>
<li><a href="#">Advice for consumers</a></li>
<li><a href="#">Information for industry</a></li>
</ul>
</div>
<div class="list-item">
<h4 class="title d-flex justify-content-between align-items-center">
<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>
<span class="me-auto ms-2">Phones and internet</span>
</h4>
<ul>
<li><a href="#">Advice for consumers</a></li>
<li><a href="#">Information for industry</a></li>
<li><a href="#">Coverage</a></li>
</ul>
</div>
<div class="list-item">
<h4 class="title d-flex justify-content-between align-items-center">
<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>
<span class="me-auto ms-2">Post</span>
</h4>
<ul>
<li><a href="#">Advice for consumers</a></li>
<li><a href="#">Information for industry</a></li>
</ul>
</div>
<div class="list-item"></div>
<div class="list-item">
<h4 class="title d-flex justify-content-between align-items-center">
<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>
<span class="me-auto ms-2">Radio</span>
</h4>
<ul>
<li><a href="#">Advice for consumers</a></li>
<li><a href="#">Information for industry</a></li>
<li><a href="#">Broadcationg codes</a></li>
</div>
<div class="list-item">
<h4 class="title d-flex justify-content-between align-items-center">
<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>
<span class="me-auto ms-2">Spectrum</span>
</h4>
<ul>
<li><a href="#">Spectrum management</a></li>
<li><a href="#">Protecting and managing the airwaves</a></li>
<li><a href="#">Radio spectrum and the law</a></li>
<li><a href="#">Spectrum information</a></li>
<li><a href="#">Electromagnetic fields(EMF)</a></li>
</div>
<div class="list-item">
<h4 class="title d-flex justify-content-between align-items-center">
<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>
<span class="me-auto ms-2">TV and on-demand</span>
</h4>
<ul>
<li><a href="#">Advice for consumers</a></li>
<li><a href="#">Information for industry</a></li>
<li><a href="#">Broadcationg codes</a></li>
</div>
<div class="w-100 menu-social-icons">
<a class="text-white " href="#" title="Twitter">
<i class="fa-brands fa-twitter"></i>
</a>
<a class="text-white " href="#" title="Facebook">
<i class="fa-brands fa-facebook-f"></i>
</a>
<a class="text-white " href="#" title="LinkedIn">
<i class="fa-brands fa-linkedin"></i>
</a>
<a class="text-white " href="#" title="Youtube">
<i class="fa-brands fa-youtube"></i>
</a>
<a class="text-white " href="#" title="Instagram">
<i class="fa-brands fa-square-instagram"></i>
</a>
<a class="text-white " href="#" title="Tiktok">
<i class="fa-brands fa-tiktok"></i>
</a>
</div>
<div class="multicolor-banner">
<img src="assets/img/web-icons/multicolor-banner.svg" alt="">
</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">
<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>
<span class="me-auto ms-2">Complaints</span>
</h4>
<ul>
<li class="mb-3">Compliants About:</li>
<li><a href="#">Mobile, phone or internet services</a></li>
<li><a href="#">TV, radio or on demand 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 style="line-height: 1.5;">
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 class="text-white " href="#" title="Twitter">
<i class="fa-brands fa-twitter"></i>
</a>
<a class="text-white " href="#" title="Facebook">
<i class="fa-brands fa-facebook-f"></i>
</a>
<a class="text-white " href="#" title="LinkedIn">
<i class="fa-brands fa-linkedin"></i>
</a>
<a class="text-white " href="#" title="Youtube">
<i class="fa-brands fa-youtube"></i>
</a>
<a class="text-white " href="#" title="Instagram">
<i class="fa-brands fa-square-instagram"></i>
</a>
<a class="text-white " href="#" title="Tiktok">
<i class="fa-brands fa-tiktok"></i>
</a>
</div>
<div class="multicolor-banner">
<img src="assets/img/web-icons/multicolor-banner.svg" alt="">
</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">
<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>
<span class="me-auto ms-2">About Ofcom</span>
</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 style="line-height: 1.5;">
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 class="text-white " href="#" title="Twitter">
<i class="fa-brands fa-twitter"></i>
</a>
<a class="text-white " href="#" title="Facebook">
<i class="fa-brands fa-facebook-f"></i>
</a>
<a class="text-white " href="#" title="LinkedIn">
<i class="fa-brands fa-linkedin"></i>
</a>
<a class="text-white " href="#" title="Youtube">
<i class="fa-brands fa-youtube"></i>
</a>
<a class="text-white " href="#" title="Instagram">
<i class="fa-brands fa-square-instagram"></i>
</a>
<a class="text-white " href="#" title="Tiktok">
<i class="fa-brands fa-tiktok"></i>
</a>
</div>
<div class="multicolor-banner">
<img src="assets/img/web-icons/multicolor-banner.svg" alt="">
</div>
</div>
</li>
<li class="menu-item-has-children">
<a href="#">More <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">
<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>
<span class="me-auto ms-2">Online safety</span>
</h4>
<ul>
<li><a href="#">Advice for consumers</a></li>
<li><a href="#">Information for industry</a></li>
</ul>
</div>
<div class="list-item">
<h4 class="title d-flex justify-content-between align-items-center">
<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>
<span class="me-auto ms-2">Phones and internet</span>
</h4>
<ul>
<li><a href="#">Advice for consumers</a></li>
<li><a href="#">Information for industry</a></li>
<li><a href="#">Coverage</a></li>
</ul>
</div>
<div class="list-item">
<h4 class="title d-flex justify-content-between align-items-center">
<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>
<span class="me-auto ms-2">Post</span>
</h4>
<ul>
<li><a href="#">Advice for consumers</a></li>
<li><a href="#">Information for industry</a></li>
</ul>
</div>
<div class="list-item">
<h4 class="title d-flex justify-content-between align-items-center">
<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>
<span class="me-auto ms-2">Radio</span>
</h4>
<ul>
<li><a href="#">Advice for consumers</a></li>
<li><a href="#">Information for industry</a></li>
<li><a href="#">Broadcationg codes</a></li>
</div>
<div class="w-100 menu-social-icons">
<a class="text-white " href="#" title="Twitter">
<i class="fa-brands fa-twitter"></i>
</a>
<a class="text-white " href="#" title="Facebook">
<i class="fa-brands fa-facebook-f"></i>
</a>
<a class="text-white " href="#" title="LinkedIn">
<i class="fa-brands fa-linkedin"></i>
</a>
<a class="text-white " href="#" title="Youtube">
<i class="fa-brands fa-youtube"></i>
</a>
<a class="text-white " href="#" title="Instagram">
<i class="fa-brands fa-square-instagram"></i>
</a>
<a class="text-white " href="#" title="Tiktok">
<i class="fa-brands fa-tiktok"></i>
</a>
</div>
<div class="multicolor-banner">
<img src="assets/img/web-icons/multicolor-banner.svg" alt="">
</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"><span class="d-none">Serach</span></label>
</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">
<ul>
<li class="serach-link">
<i class="fa-solid fa-circle-arrow-right"></i>
<a href=""> Complaints</a>
</li>
<li class="serach-link">
<i class="fa-solid fa-circle-arrow-right"></i>
<a href=""> Mobile and Broadband checker</a>
</li>
</ul>
</div>
<div class="col-6 col-md-3">
<ul>
<li class="serach-link">
<i class="fa-solid fa-circle-arrow-right"></i>
<a href=""> What is Ofcom</a>
</li>
<li class="serach-link">
<i class="fa-solid fa-circle-arrow-right"></i>
<a href=""> Licences</a>
</li>
</ul>
</div>
<div class="col-6 col-md-3">
<ul>
<li class="serach-link">
<i class="fa-solid fa-circle-arrow-right"></i>
<a href=""> Newsroom</a>
</li>
<li class="serach-link">
<i class="fa-solid fa-circle-arrow-right"></i>
<a href=""> Consultations</a>
</li>
</ul>
</div>
<div class="col-6 col-md-3">
<ul>
<li class="serach-link">
<i class="fa-solid fa-circle-arrow-right"></i>
<a href=""> How to Ofcom is run</a>
</li>
<li class="serach-link">
<i class="fa-solid fa-circle-arrow-right"></i>
<a href=""> Reports and Data</a>
</li>
</ul>
</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>
<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">
<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 px-4">Share this page <img 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="blue-bg">
<div class="row g-0 mt-5">
<div class="col-10 col-sm-8 mx-auto">
<video src="assets/video/video.mp4" class="card-img-top"
controls=""></video>
<!-- <iframe width="100%" height="500" src="https://www.youtube.com/watch?v=cdVUr-NrXng">
</iframe> -->
</div>
</div>
</section>
<section class="light-blue-bg py-5">
<div class="row g-0 d-flex justify-content-center">
<div class="col-10 mx-auto">
<div class="row">
<div class="col-sm-6 col-md-3">
<video src="assets/video/video.mp4" class="card-img-top"
controls=""></video>
<span class="text-white mt-2 d-block">How to forward a scam text to 7726 on Android</span>
</div>
<div class="col-sm-6 col-md-3">
<video src="assets/video/video.mp4" class="card-img-top"
controls=""></video>
<span class="text-white mt-2 d-block">How to report a scam mobile call to 7726 on iPhone</span>
</div>
<div class="col-sm-6 col-md-3">
<video src="assets/video/video.mp4" class="card-img-top"
controls=""></video>
<span class="text-white mt-2 d-block">How to report a scam mobile call to 7726 on Android</span>
</div>
<div class="col-sm-6 col-md-3">
<video src="assets/video/video.mp4" class="card-img-top"
controls=""></video>
<span class="text-white mt-2 d-block">How to report a scam mobile call to 7726 on Android</span>
</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 pt-2 mb-3 social">
<div class="follow fw-bold">Follow us </div>
<ul class="list-unstyled d-flex d-lg-block d-sm-flex social-icons">
<li class="social-icons-list">
<a class="text-white " href="#" title="Twitter">
<i class="fa-brands fa-twitter"></i>
</a>
<a class="text-white " href="#" title="Facebook">
<i class="fa-brands fa-facebook-f"></i>
</a>
<a class="text-white " href="#" title="LinkedIn">
<i class="fa-brands fa-linkedin"></i>
</a>
</li>
<li class="social-icons-list">
<a class="text-white " href="#" title="Youtube">
<i class="fa-brands fa-youtube"></i>
</a>
<a class="text-white " href="#" title="Instagram">
<i class="fa-brands fa-square-instagram"></i>
</a>
<a class="text-white " 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>
</li>
<li class="">
<a class="text-white " href="#">Copyright and information re-use</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">Advice for business</div>
<ul class="list-unstyled">
<li class="">
<a class="text-white " href="#">A starter pack for business</a>
</li>
<li class="">
<a class="text-white " href="#">Knowing your rights</a>
</li>
<li class="">
<a class="text-white " href="#">All our advise for business</a>
</li>
</ul>
</section>
</div>
</div>
</div>
<div class=" container ">
<div class="row copyrights ">
<div class="pb-3 fw-bold text-white text-lg-start text-start text-sm-end">© Ofcom 2023</div>
</div>
</div>
</footer>
</main>
<!-- Optional JavaScript; choose one of the two! -->
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
<script src="vendor/jquery/jquery.min.js"></script>
<script src="js/main.js"></script>
<script>window.MSInputMethodContext && document.documentMode && document.write('<link rel="stylesheet" href="css/bootstrap-ie11.min.css"><script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"><\/script><script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"><\/script><script src="https://cdn.jsdelivr.net/gh/nuxodin/[email protected]/ie11CustomProperties.min.js"><\/script>');</script>
<!-- Option 2: Separate Popper and Bootstrap JS -->
<!--
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF" crossorigin="anonymous"></script>
-->
</body>
</html>