-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomponents.html
3152 lines (3004 loc) · 161 KB
/
components.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">
<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">
<title>OFCOM</title>
</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 pdng-right-0px">
<div class="logo me-auto me-lg-0">
<a href="index.html"> <img class="brand-logo" src="assets/img/DRCF-logo-WEB.png" alt="DRCF" /></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="block">
<a href="about-DRCF.html">About the DRCF</a>
</li>
<li class="block">
<a href="javascript:void(0);">News & Events</a>
</li>
<li class="block">
<a href="javascript:void(0);">Key Projects</a>
</li>
<li class="menu-item-has-children">
<a href="javascript:void(0);">Publications <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">Publications</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><a href="#">Blogs</a></li>
<li><a href="#">Papers</a></li>
<li><a href="#">Joint Statements</a></li>
<li><a href="#">Annual Reports</a></li>
<li><a href="#">Workplans</a></li>
<li><a href="#">Press Releases</a></li>
</ul>
</div>
</div>
</li>
<li class="block">
<a href="javascript:void(0);">Research Library</a>
</li>
<li class="block">
<a href="javascript:void(0);">Recruitment</a>
</li>
</ul>
</nav>
</div>
<!-- menu end here -->
<!-- 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>
</header>
<main>
<div id="skip" class="visually-hidden">Home page features</div>
<section class="breadcrumb-position">
<div class="row">
<div class="col-12">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="#">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">
<div class="col-md-6 order-last order-md-first">
<div class="hero-banner green-bg h-100">
<h1>Components</h1>
<p>Page intro here. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt
ut labore et dolore magna aliqua.</p>
</div>
</div>
<div class="col-md-6 order-first order-md-last">
<img src="assets/img/components.jpg" class="w-100 hero-banner-img" alt="" />
</div>
</div>
<div class="row g-0">
<div class="col-12">
<div class="recommendation-block-outer">
<div class="row g-0">
<div id="CTABlockId" class="col-md-12 col-lg-6">
<div>
<div class="block contentrecommendationsblock ">
<div data-rpp="4" data-api-key="384ZEDLVDUUK3DL2GUY6" type="text/x-mustache"
class="idio-recommendations">
<div class="blue-bg recommendation-block">
<div class="row">
<div class="col-12 mb-4">
<h2 class="recommendation-header mt-4 mt-md-0"> Recommendations-1 </h2>
</div>
<div class="col-md-6">
<a href="https://www-pp.ofcom.org.uk/topic-and-subtopics/spectrum/frequencies/licence-information/trades/?ite=325&ito=661&itq=33ee2589-d94e-414d-84be-d4b9f06705ea&itx%5Bidio%5D=1332"
class="recommendation-link-block" title="Spectrum trades">
<div
class="recommendation-link d-flex justify-content-between align-items-start align-items-center">
<span class="text-truncate"> Spectrum trades </span>
<svg class="svg-arrow" width="25" height="25" viewBox="0 0 40 40"
xmlns="http://www.w3.org/2000/svg">
<circle cx="20.2449" cy="19.7964" r="19"></circle>
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964" stroke-width="2"
stroke-linejoin="bevel"></path>
<path d="M30.6472 20.2964L9.64722 20.2964" stroke-width="2" stroke-linejoin="bevel">
</path>
</svg>
</div>
</a>
</div>
<div class="col-md-6">
<a href="https://www-pp.ofcom.org.uk/topic-and-subtopics/online-safety/protecting-children/news-and-updates/risks-of-children-using-false-ages-on-social-media/?ite=338&ito=661&itq=33ee2589-d94e-414d-84be-d4b9f06705ea&itx%5Bidio%5D=1332"
class="recommendation-link-block"
title="How old is your child online? The risks of children using false ages on social media">
<div
class="recommendation-link d-flex justify-content-between align-items-start align-items-center">
<span class="text-truncate"> How old is your child online? The risks of children using
false ages on social media </span>
<svg class="svg-arrow" width="25" height="25" viewBox="0 0 40 40"
xmlns="http://www.w3.org/2000/svg">
<circle cx="20.2449" cy="19.7964" r="19"></circle>
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964" stroke-width="2"
stroke-linejoin="bevel"></path>
<path d="M30.6472 20.2964L9.64722 20.2964" stroke-width="2" stroke-linejoin="bevel">
</path>
</svg>
</div>
</a>
</div>
<div class="col-md-6">
<a href="https://www-pp.ofcom.org.uk/topic-and-subtopics/online-safety/protecting-children/news-and-updates/piloting-serious-games/?ite=336&ito=661&itq=33ee2589-d94e-414d-84be-d4b9f06705ea&itx%5Bidio%5D=1332"
class="recommendation-link-block"
title="Harnessing the power of games to make children safer online">
<div
class="recommendation-link d-flex justify-content-between align-items-start align-items-center">
<span class="text-truncate"> Harnessing the power of games to make children safer online
</span>
<svg class="svg-arrow" width="25" height="25" viewBox="0 0 40 40"
xmlns="http://www.w3.org/2000/svg">
<circle cx="20.2449" cy="19.7964" r="19"></circle>
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964" stroke-width="2"
stroke-linejoin="bevel"></path>
<path d="M30.6472 20.2964L9.64722 20.2964" stroke-width="2" stroke-linejoin="bevel">
</path>
</svg>
</div>
</a>
</div>
<div class="col-md-6">
<a href="https://www-pp.ofcom.org.uk/topic-and-subtopics/spectrum/frequencies/licence-information/above-5ghz/?ite=329&ito=661&itq=33ee2589-d94e-414d-84be-d4b9f06705ea&itx%5Bidio%5D=1332"
class="recommendation-link-block" title="Mobile and wireless broadband above 5 GHz">
<div
class="recommendation-link d-flex justify-content-between align-items-start align-items-center">
<span class="text-truncate"> Mobile and wireless broadband above 5 GHz </span>
<svg class="svg-arrow" width="25" height="25" viewBox="0 0 40 40"
xmlns="http://www.w3.org/2000/svg">
<circle cx="20.2449" cy="19.7964" r="19"></circle>
<path d="M22.6774 12.2964L30.8422 20.2964L22.6774 28.2964" stroke-width="2"
stroke-linejoin="bevel"></path>
<path d="M30.6472 20.2964L9.64722 20.2964" stroke-width="2" stroke-linejoin="bevel">
</path>
</svg>
</div>
</a>
</div>
</div>
</div>
</div>
<script
src="https://api.emea01.idio.episerver.net/1.0/users/idio_visitor_id:59c6e00c-41b2-46b7-a16e-029540c1c0ee/content?include_topics&callback=idio.r0&key=384ZEDLVDUUK3DL2GUY6&session[]=https%3A%2F%2Fwww-pp.ofcom.org.uk%2Ftesting%2Ftesting%2F&session[]=https%3A%2F%2Fwww-pp.ofcom.org.uk%2Ftesting%2Ftesting%2F&rpp=4"></script>
</div>
</div>
</div>
<div class="col-md-12 col-lg-6 d-flex align-items-center search-form blue-bg recommendation-block">
<div class="row">
<div class="col-12 col-md-7">
<p class="">
Received an invoice? Then use our secure payment portal to pay for your licence in a few easy
steps.
</p>
</div>
<div class="col-12 col-md-5 justify-content-end d-flex align-items-center">
<a href="" class="btn btn-primary-white-border pay-btn">Pay online<i
class="fa-solid fa-arrow-right recommendation-block-arrow"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class=" my-5">
<h3 class="text-center my-5">Statistic call out (fill)</h3>
<div class="static-callout-block lightblue-bg">
<div class="callout-grid">
<div class="box">
<div class="static-callout">
<p>
On average, adults in the UK spent almost
On average, adults in the UK spent almost
</p>
<span class="h1">
<div class="counter" data-target="50"></div>
</span>
<p>
hours online each day in September 2021
</p>
</div>
</div>
<div class="box">
<div class="static-callout">
<p>
On average, adults in the UK spent almost
</p>
<span class="h1">
4
</span>
<p>
hours online each day in September 2021
</p>
</div>
</div>
<div class="box">
<div class="static-callout">
<p>
On average, adults in the UK spent almost
</p>
<span class="h1">
4
</span>
<p>
hours online each day in September 2021
</p>
</div>
</div>
<div class="box">
<div class="static-callout">
<p>
On average, adults in the UK spent almost
</p>
<span class="h1">
4
</span>
<p>
hours online each day in September 2021
</p>
</div>
</div>
<div class="box">
<div class="static-callout">
<p>
On average, adults in the UK spent almost
</p>
<span class="h1">
4
</span>
<p>
hours online each day in September 2021
</p>
</div>
</div>
<div class="box">
<div class="static-callout">
<p>
On average, adults in the UK spent almost
</p>
<span class="h1">
4
</span>
<p>
hours online each day in September 2021
</p>
</div>
</div>
</div>
</div>
</section>
<section class=" my-5">
<h3 class="text-center my-5">Statistic call out (white)</h3>
<div class="static-callout-block">
<div class="callout-grid">
<div class="box">
<div class="static-callout">
<p>
On average, adults in the UK spent almost
</p>
<span class="h1">
4
</span>
<p>
hours online each day in September 2021
</p>
</div>
</div>
<div class="box">
<div class="static-callout">
<p>
On average, adults in the UK spent almost
</p>
<span class="h1">
4
</span>
<p>
hours online each day in September 2021
</p>
</div>
</div>
<div class="box">
<div class="static-callout">
<p>
On average, adults in the UK spent almost
</p>
<span class="h1">
4
</span>
<p>
hours online each day in September 2021
</p>
</div>
</div>
<div class="box">
<div class="static-callout">
<p>
On average, adults in the UK spent almost
</p>
<span class="h1">
4
</span>
<p>
hours online each day in September 2021
</p>
</div>
</div>
<div class="box">
<div class="static-callout">
<p>
On average, adults in the UK spent almost
</p>
<span class="h1">
4
</span>
<p>
hours online each day in September 2021
</p>
</div>
</div>
<div class="box">
<div class="static-callout">
<p>
On average, adults in the UK spent almost
On average, adults in the UK spent almost
On average, adults in the UK spent almost
</p>
<span class="h1">
4
</span>
<p>
hours online each day in September 2021
On average, adults in the UK spent almost
</p>
</div>
</div>
</div>
</div>
</section>
<section class="container-xl my-5">
<h3 class="text-center my-5">Membership Panel</h3>
<div class="row">
<div class="col-11 col-md-8 mx-auto">
<div class="red-bg membership-panel">
<div class="row">
<div class="col-md-3 text-center">
<picture>
<img src="assets/img/Lord-Grade 2.png" class="membership-image" alt="" />
</picture>
</div>
<div class="col-md-9">
<hr class="border border-secondary border-top my-0 d-sm-none d-md-block">
</hr>
<h3 class="mt-3">Lord Grade of Yarmouth</h3>
<h4>
Chair
</h4>
<p>
Michael Grade has had a long career in broadcasting, encompassing London Weekend Television, the BBC,
ITV and Channel 4. He has chaired the BBC, ITV and Pinewood/Shepperton Film Studios. He is co-founder
of
the GradeLinnit company, which produces for the theatre.<br><br>
He is Chairman of the Arora Group’s Heathrow Expansion Advisory Board, having also been Chairman of
Ocado, First Leisure Corporation, Camelot, the Charity Fundraising Regulator and Bradford’s Media
Museum
as well as being a member of the former Press Complaints Commission and a trustee of the Science
Museum.<br><br>
Michael Grade sits in the House of Lords as a non-affiliated Peer. His Peerage was created in January
2011.<br><br>
Michael Grade joined the Ofcom Board on 1 May 2022. His appointment runs until 30 April 2026.<br><br>
<strong>Appointed:</strong> 1 May 2022<br>
<strong>Membership:</strong> People Committee
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section>
<h3 class="text-center my-5">Email Subscription & Subscribe to media releases</h3>
<div class="col-11 col-md-8 mx-auto gray-bg custom-subscribe-form">
<form id="subForm" class="js-cm-form" action="https://www.createsend.com/t/subscribeerror?description="
method="post"
data-id="30FEA77E7D0A9B8D7616376B90063231099BCF1A699E3BF5009F32651A1FFA4F26AF3FC269A428FD6618013993E736895E6AD18C37BBFBC2F05640D0670A80A8">
<p>
<label for="fieldName"><strong>Name</strong></label>
<br />
<input id="fieldName" name="cm-name" type="text" />
</p>
<p>
<label for="fieldEmail"><strong>Email</strong></label>
<br />
<input id="fieldEmail" name="cm-fututl-fututl" type="email" class="js-cm-email-input" required />
</p>
</p>
<h2>Which updates would you like to receive?</h2>
<h3>Monthly newsletter</h3>
<p>A monthly roundup of our latest news and advice, to help you keep up to date on the work we do and what it
means for you. <a href="https://createsend.com/t/i-1FF3F944AB42E4CE2540EF23F30FEDED">Read an example
email</a></p>
<div><input id="yujdjtl" name="cm-ol-yujdjtl" type="checkbox" value="yujdjtl"><label for="yujdjtl">Sign up to
Ofcom's monthly newsletter</label></div>
<!--<label for="fieldjltjydl"><strong>Monthly newsletter</strong></label>
<p>A monthly roundup of our latest news and advice, to help you keep up to date on the work we do and what it means for you.
<br><select id="fieldjltjydl" name="cm-fo-jltjydl">
<option value="1104964">No</option>
<option value="1104963">Yes</option>
</select>
</p><br>-->
<h3>Updates on each sector</h3>
<p>Keep up to date on the sectors of our work that interest you.</p>
<p>
<label for="fieldidkhutd"><strong>About Ofcom</strong></label>
<br />News about Ofcom. Includes updates on how we are run, organisations we work with, and how we make
communications work for everyone.
<br><select id="fieldidkhutd" name="cm-fo-idkhutd">
<option value="1922825">No</option>
<option value="1922824">Yes</option>
</select>
</p><br>
<p>
<label for="fieldjltjwh"><strong>Broadcasting</strong></label>
<br />Our work licensing and regulating TV and radio broadcasting. Includes fortnightly <a
href="./?a=13922">Broadcast and On Demand Bulletins</a> containing our latest complaints adjudications.
<br><select id="fieldjltjwh" name="cm-fo-jltjwh">
<option value="1104958">No</option>
<option value="1104957">Yes</option>
</select>
</p><br>
<p>
<label for="fieldjltjwk"><strong>Enforcement Bulletin</strong></label>
<br />Details of investigations into companies’ compliance with our rules. These often involve issues
of consumer protection, competition and disputes between providers.
<br><select id="fieldjltjwk" name="cm-fo-jltjwk">
<option value="1104960">No</option>
<option value="1104959">Yes</option>
</select>
</p><br>
<p>
<label for="fieldjltjydr"><strong>Media literacy</strong></label>
<br />Our work to ensure children and adults have the skills, knowledge and understanding to make full use
of communications services.
<br><select id="fieldjltjydr" name="cm-fo-jltjydr">
<option value="1104966">No</option>
<option value="1104965">Yes</option>
</select>
</p><br>
<p>
<label for="fieldidkhuth"><strong>Online safety</strong></label>
<br />Our work preparing to regulate online safety under the UK Government's proposed Online Safety Act. We
are currently the regulator for UK-established video sharing platforms.
<br><select id="fieldidkhuth" name="cm-fo-idkhuth">
<option value="1922826">No</option>
<option value="1922825">Yes</option>
</select>
</p><br>
<p>
<label for="fieldjltjydy"><strong>Postal services</strong></label>
<br />Our work regulating postal services.
<br><select id="fieldjltjydy" name="cm-fo-jltjydy">
<option value="1104968">No</option>
<option value="1104967">Yes</option>
</select>
</p><br>
<p>
<label for="fieldjltjydj"><strong>Radio spectrum</strong></label>
<br />Our work to manage the UK’s radio spectrum – the airwaves that underpin modern
communications and wireless devices.
<br><select id="fieldjltjydj" name="cm-fo-jltjydj">
<option value="1104970">No</option>
<option value="1104969">Yes</option>
</select>
</p><br>
<p>
<label for="fieldjltjydt"><strong>Telecoms</strong></label>
<br />Our work to regulate broadband, landline and mobile phones, and other telecoms services.
<br><select id="fieldjltjydt" name="cm-fo-jltjydt">
<option value="1104972">No</option>
<option value="1104971">Yes</option>
</select>
</p>
<hr>
<p>Our third-party email service stores your personal data outside the EU/UK and uses cookies to measure
engagement with our email updates. Cookies help us to improve our service. For more information, see our <a
href="./?a=3313">cookies policy</a> and <a href="./?a=113117">how we handle your personal data</a>.</p>
<div>
<input id="cm-privacy-email" name="cm-privacy-email" type="checkbox" />
<label for="cm-privacy-email">I’m OK with Ofcom tracking my engagement with email updates.</label>
<input id="cm-privacy-email-hidden" name="cm-privacy-email-hidden" type="hidden" value="true" />
</div>
<br>
<p>
<button class="subscribe-button js-cm-submit-button" type="submit">Subscribe</button>
</p>
</form>
</div>
</section>
<section class="container-xl">
<div class="col-11 col-md-8 mx-auto my-5">
<h3 class="text-center my-5">All Headings</h3>
<h4 class="h1">
Phones and internet
</h4>
<h4 class="h2">
Slider feature title goes here
</h2>
<h4 class="h3">
Latest news
</h3>
<h4>
Lorem ipsum dolor sit amet
</h4>
<h5>
Lorem ipsum dolor sit amet
</h5>
</div>
</section>
<section>
<h3 class="text-center my-5">Contact Digital Team Form</h3>
<div class="row">
<div class="col-11 col-md-8 mx-auto gray-bg form-container">
<div class="row bullet-list">
<!-- <span class="mb-4">You can use this form to tell us about:</span>
<ul>
<li>broken links;</li>
<li>accessibility concerns or request for alternative formats;</li>
<li>other issues you find on our website.</li>
</ul>
<span class="my-4">In your response, please can you provide the following if they are relevant:</span>
<ul>
<li>The link address (URL)</li>
<li>The date and time you noticed the issue</li>
<li>What browser you are using (and version)</li>
<li>
What device you are using (iPhone, Android etc.)
</li>
<li>
Your contact details, so we can reply
</li>
<li>
We will only use your name and email address to respond to your query, and will delete them once we
have.
</li>
</ul> -->
<!--
<div class="mt-5">
<form>
<div class="mb-3 form-error">
<label for="aa" class="form-label">Name *</label>
<input type="email" class="form-control" id="aa" aria-describedby="emailHelp">
<div id="emailHelp" class="form-text">error message hare</div>
</div>
<div class="mb-3">
<label for="bb" class="form-label">Comments *</label>
<textarea class="form-control" id="bb" rows="3"></textarea>
</div>
<div class="mb-3">
<label for="cc" class="form-label">Email *</label>
<input type="text" class="form-control" id="cc">
</div>
<div class="mb-3">
<label for="dd" class="form-label">Web address (URL). Note: This field is not required, but will help
us identify where the issue is on our site</label>
<input type="text" class="form-control" id="dd">
</div>
<div class="mb-2 form-check">
<input type="checkbox" class="form-check-input" id="ee" role="checkbox" aria-checked="false"
aria-labelledby="chk1-label">
<label class="form-check-label" for="ee">Default checkbox</label>
</div>
<div class="mb-3 form-check">
<input type="checkbox" class="form-check-input" id="ff" role="checkbox" aria-checked="false"
aria-labelledby="chk2-label">
<label class="form-check-label" for="ff">Default checkbox</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="flexRadioDefault" id="flexRadioDefault1">
<label class="form-check-label" for="flexRadioDefault1">
Default radio
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="flexRadioDefault" id="flexRadioDefault2" checked>
<label class="form-check-label" for="flexRadioDefault2">
Default checked radio
</label>
</div>
<div class="row">
<div class="col-12">
<img src="assets/img/captcha.png" class="my-4" alt="">
</div>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
<button type="submit" class="btn btn-secondary ms-4">Reset</button>
</form>
</div> -->
</div>
</div>
</div>
</section>
<h3 class="text-center my-5">Page Feedback Form</h3>
<div id="feedbackform" class="col-8 mx-auto">
<div>
<div class="block formcontainerblock ">
<form method="post" novalidate="novalidate" data-f-metadata=""
aria-labelledby="4078f3df-4b94-46ce-9ebd-e2b5903bfb68_label" enctype="multipart/form-data"
class="EPiServerForms ValidationSuccess" data-f-type="form" id="4078f3df-4b94-46ce-9ebd-e2b5903bfb68">
<script type="text/javascript">
// This view acts as a rendering template to render InitScript(and server-side Form's descriptor) in FormContainerBlock's client-side for Form[4078f3df-4b94-46ce-9ebd-e2b5903bfb68].
// TECHNOTE: all serverside (paths, dynamic values) of EPiServerForms will be transfered to client side here in this section.
(function initializeOnRenderingFormDescriptor() {
// each workingFormInfo is store inside epi.EPiServer.Forms, lookup by its FormGuid
var workingFormInfo = epi.EPiServer.Forms["4078f3df-4b94-46ce-9ebd-e2b5903bfb68"] = {
Id: "4078f3df-4b94-46ce-9ebd-e2b5903bfb68",
Name: "Page Feedback Form",
// whether this Form can be submitted which relates to the visitor's data (cookie, identity) and Form's settings (AllowAnonymous, AllowXXX)
SubmittableStatus: { "submittable": true, "message": "" },
ConfirmMessage: "Successfully Submitted Confirmation Message",
ResetConfirmMessage: "",
ShowNavigationBar: true,
ShowSummarizedData: false,
// serialize the dependency configuration of this form to clientside
DependenciesInfo: JSON.parse("[{\"fieldName\":\"__field_72719\",\"action\":{\"displayName\":\"Shown\",\"name\":\"EPiServer.Forms.Core.Internal.Dependency.ShowAction\",\"order\":1,\"clientsideAction\":\"show\"},\"conditionCombination\":\"Any\",\"conditions\":[{\"fieldName\":\"__field_72718\",\"operator\":\"Equals\",\"fieldValue\":\"No\"}]},{\"fieldName\":\"__field_72720\",\"action\":{\"displayName\":\"Shown\",\"name\":\"EPiServer.Forms.Core.Internal.Dependency.ShowAction\",\"order\":1,\"clientsideAction\":\"show\"},\"conditionCombination\":\"Any\",\"conditions\":[{\"fieldName\":\"__field_72718\",\"operator\":\"Equals\",\"fieldValue\":\"No\"},{\"fieldName\":\"__field_72718\",\"operator\":\"Equals\",\"fieldValue\":\"Yes\"}]}]"),
// keep all fieldName which are not satisfied the field dependency conditions
DependencyInactiveElements: [],
// Validation info, for executing validating on client side
ValidationInfo: JSON.parse("[{\"targetElementName\":\"__field_72719\",\"targetElementId\":\"f592d84e-befd-49d2-9c31-b9b5ed8268dd\",\"validators\":[{\"type\":\"EPiServer.Forms.Implementation.Validation.RequiredValidator\",\"description\":null,\"model\":{\"message\":\"This field is required.\",\"validationCssClass\":\"ValidationRequired\",\"additionalAttributes\":{\"required\":\"\",\"aria-required\":\"true\"}}}]}]"),
// Steps information for driving multiple-step Forms.
StepsInfo: {
Steps: [{ "index": 0, "attachedUrl": "", "dependField": null, "dependCondition": null, "isActive": true, "attachedContentLink": "", "dependValue": "", "elementName": "__field_", "guid": "00000000-0000-0000-0000-000000000000" }]
},
FieldsExcludedInSubmissionSummary: [],
ElementsInfo: JSON.parse("{\"__field_72718\":{\"type\":\"EPiServer.Forms.Implementation.Elements.ChoiceElementBlock\",\"friendlyName\":\"Options\",\"customBinding\":false},\"__field_72719\":{\"type\":\"EPiServer.Forms.Implementation.Elements.TextareaElementBlock\",\"friendlyName\":\"comments\",\"customBinding\":false},\"__field_72720\":{\"type\":\"EPiServer.Forms.Implementation.Elements.SubmitButtonElementBlock\",\"friendlyName\":\"Submit\",\"customBinding\":false}}"),
DataSubmitController: "/EPiServer.Forms/DataSubmit"
};
/// TECHNOTE: Calculation at FormInfo level, and these values will be static input for later processing.
workingFormInfo.StepsInfo.FormHasNoStep_VirtualStepCreated = true; // this FLAG will be true, if Editor does not put any FormStep. Engine will create a virtual step, with empty GUID
workingFormInfo.StepsInfo.FormHasNothing = false; // this FLAG will be true if FormContainer has no element at all
workingFormInfo.StepsInfo.AllStepsAreNotLinked = true; // this FLAG will be true, if all steps all have contentLink= ="" (emptyString)
})();
</script>
<input type="hidden" class="Form__Element Form__SystemElement FormHidden FormHideInSummarized"
name="__FormGuid" value="4078f3df-4b94-46ce-9ebd-e2b5903bfb68" data-f-type="hidden" autocomplete="off">
<input type="hidden" class="Form__Element Form__SystemElement FormHidden FormHideInSummarized"
name="__FormHostedPage" value="70285" data-f-type="hidden" autocomplete="off">
<input type="hidden" class="Form__Element Form__SystemElement FormHidden FormHideInSummarized"
name="__FormLanguage" value="en" data-f-type="hidden" autocomplete="off">
<input type="hidden" class="Form__Element Form__SystemElement FormHidden FormHideInSummarized"
name="__FormCurrentStepIndex" value="0" data-f-type="hidden" autocomplete="off">
<input type="hidden" class="Form__Element Form__SystemElement FormHidden FormHideInSummarized"
name="__FormSubmissionId" value="" data-f-type="hidden" autocomplete="off">
<input name="__RequestVerificationToken" type="hidden"
value="CfDJ8K52XzGSUE5AnhZHb4iPp1Ukg6_sR_tpGoVatmlUbDAhHcZ3T3LPOWHVOBKb0YOEKKY3AhoM_HFZP71VbIw19ixbj90jjcQt9XOpw6dPPQgswbcKX61vonBQQlJqKHxPXw6O3jQFm0UI9W6fisoN-Lk">
<h2 class="Form__Title" id="4078f3df-4b94-46ce-9ebd-e2b5903bfb68_label">Rate this page</h2>
<div class="Form__Status">
<div role="status" class="Form__Status__Message hide" data-f-form-statusmessage="">
</div>
</div>
<div data-f-mainbody="" class="Form__MainBody">
<section id="__field_" data-f-type="step" data-f-element-name="__field_"
class="Form__Element FormStep Form__Element--NonData " data-f-stepindex="0" data-f-element-nondata="">
<!-- Each FormStep groups the elements below it til the next FormStep -->
<div aria-invalid="false" class="Form__Element FormChoice" data-f-element-name="__field_72718"
data-f-type="choice" id="c2ee3143-73e4-46e6-9298-3708bd1947c3">
<fieldset aria-describedby="__field_72718_desc">
<legend class="Form__Element__Caption">Was this page helpful?</legend>
<div>
<input type="radio" id="c2ee3143-73e4-46e6-9298-3708bd1947c3_0" name="__field_72718" value="Yes"
class="FormChoice__Input FormChoice__Input--Radio" data-f-datainput="">
<label for="c2ee3143-73e4-46e6-9298-3708bd1947c3_0" class="FormChoice__Label">
Yes
</label>
</div>
<div>
<input type="radio" id="c2ee3143-73e4-46e6-9298-3708bd1947c3_1" name="__field_72718" value="No"
class="FormChoice__Input FormChoice__Input--Radio" data-f-datainput="">
<label for="c2ee3143-73e4-46e6-9298-3708bd1947c3_1" class="FormChoice__Label">
No
</label>
</div>
</fieldset>
<span class="Form__Element__ValidationError" data-f-linked-name="__field_72718"
data-f-validationerror="" id="__field_72718_desc" role="alert" style="display:none"></span>
</div>
<div class="Form__Element FormTextbox FormTextbox--Textarea ValidationRequired hide"
data-f-element-name="__field_72719" data-f-modifier="textarea" data-f-type="textbox"> <label
for="f592d84e-befd-49d2-9c31-b9b5ed8268dd" class="Form__Element__Caption">What can we do to improve
pages like this?</label>
<textarea name="__field_72719" id="f592d84e-befd-49d2-9c31-b9b5ed8268dd" class="FormTextbox__Input"
placeholder="" data-f-label="What can we do to improve pages like this?" data-f-datainput=""
title="Tooltip text resolved the aria label issue" required="" aria-required="true"
aria-describedby="__field_72719_desc" aria-invalid="false" autocomplete="off"></textarea>
<span class="Form__Element__ValidationError" data-f-linked-name="__field_72719"
data-f-validationerror="" id="__field_72719_desc" role="alert" style="display:none"></span>
</div>
<button id="fe98d66c-adbf-4f60-b418-70b1b7b32a3a" name="submit" type="submit"
value="fe98d66c-adbf-4f60-b418-70b1b7b32a3a" data-f-is-finalized="false"
data-f-is-progressive-submit="true" data-f-type="submitbutton" data-f-element-name="__field_72720"
class="Form__Element FormExcludeDataRebind FormSubmitButton hide">
Submit</button>
</section>
</div>
</form>
</div>
</div>
</div>
<section>
<section>
<h3 class="text-center my-5">Key Documents</h3>
<div class="row g-0 my-5">
<div class="col-10 col-sm-8 mx-auto">
<a href="" class="file-download">
<div class="pdfdownload">
<img src="assets/img/web-icons/Download.svg" class="me-3" alt="">
<div>
<span>Example name of file here</span>
<span class="mx-2">•</span><span>PDF</span> <span class="mx-2">•</span> <span>310 KB</span>
</div>
</div>
</a>
</div>
</div>
</section>
</section>
<section>
<section>
<h3 class="text-center my-5">Video Playlist</h3>
<div class="blue-bg video-playlist-cls">
<div class="row g-0 mt-5">
<div class="col-10 col-sm-8 mx-auto tab-content">
<div class="ratio ratio-16x9 container-xl tab-pane active" id="video-1">
<iframe title="video 2" id="youtube-id" src="assets/video/video.mp4" 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-xl tab-pane fade" id="video-2">
<video class="card-img-small" poster="assets/img/news-center-small-10.png" controls="" muted=""
controlslist="nodownload">
<source src="assets/video/video.mp4">
<track label="English" kind="subtitles" srclang="en" src="" default="">
</video>
</div>
<div class="ratio ratio-16x9 container-xl tab-pane fade" id="video-3">
<iframe title="video" id="vimeo-player" src="/siteassets/ofcom.jpeg" frameborder="0"
allow="autoplay; fullscreen; picture-in-picture" allowfullscreen=""></iframe>
</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" role="tablist">
<div class="col-12 col-md-3">
<a class="nav-link active" data-bs-toggle="pill" href="#video-1" aria-selected="true" role="tab">
<img src="/assets/img/latest-2.png" class="image-fluid" alt="Fallback Image">
<div class="video-text">
<span>Video Playlist Block - Descriptiomn</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" aria-selected="false" tabindex="-1"
role="tab">
<img src="/assets/img/latest-3.png" class="image-fluid" alt="Fallback Image">
<div class="video-text">
<span>Testing</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" aria-selected="false" tabindex="-1"
role="tab">
<img src="/assets/img/latest-4.png" class="image-fluid" alt="Fallback Image">
<div class="video-text">
<span>Video Playlist Image</span>
<i class="fa-solid fa-circle-play"></i>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
</section>
<section>
<h3 class="text-center my-5">Latest News Carousel</h3>
<div class="green-bg my-5">
<div class="container-xl">
<div class="row">
<div class="col-12">
<h3 class="topic-header text-center my-5">Our picks</h3>
<div id="topics-carousel" class="carousel news-carousel slide homepage-carousel-cls" data-bs-ride="false">
<div class="carousel-inner">
<div class="carousel-item active hero-image-carousel ">
<a class="news-carousel-link" href="">
<div
class="carousel-caption position-relative start-0 text-start row g-0 flex-sm-row flex-lg-row flex-column-reverse">
<div class="col-md-12 col-lg-5 order-lg-0 order-sm-1">
<div class="topics-carousel-text">
<div class="news-carousal-badge">
<span class="news-carousal-tag lightblue-bg">TV and on-demand</span>
<span class="news-carousal-tag lightblue-bg">topic</span>
<span class="news-carousal-tag lightblue-bg">Radio</span>
</div>
<h3 class="topics-txt">
Selected stories and the latest campaigns promoted here
</h3>
<div class="topic-hr-line"></div>
<div class="topics-date"> 01/02/2023</div>
</div>
</div>
<div class="col-md-12 col-lg-7 d-flex order-lg-1 order-sm-0">
<img src="assets/img/hero-img.PNG" class="w-100" alt="">
</div>
</div>
</a>
</div>
<div class="carousel-item hero-image-carousel ">
<a class="news-carousel-link" href="">
<div
class="carousel-caption position-relative start-0 text-start row g-0 flex-sm-row flex-lg-row flex-column-reverse">
<div class="col-md-12 col-lg-5 order-lg-0 order-sm-1">
<div class="topics-carousel-text">
<div class="news-carousal-badge">
<span class="news-carousal-tag lightblue-bg">TV and on-demand</span>
<span class="news-carousal-tag lightblue-bg">topic</span>
<span class="news-carousal-tag lightblue-bg">Radio</span>
</div>
<h3 class="topics-txt">
Selected stories and the latest
</h3>
<div class="topic-hr-line"></div>
<div class="topics-date"> 01/02/2023</div>
</div>
</div>
<div class="col-md-12 col-lg-7 d-flex order-lg-1 order-sm-0">
<img src="assets/img/hero-women.PNG" class="w-100" alt="">
</div>
</div>
</a>
</div>
<div class="carousel-item hero-image-carousel ">
<a class="news-carousel-link" href="">
<div
class="carousel-caption position-relative start-0 text-start row g-0 flex-sm-row flex-lg-row flex-column-reverse">
<div class="col-md-12 col-lg-5 order-lg-0 order-sm-1">
<div class="topics-carousel-text">
<div class="news-carousal-badge">
<span class="news-carousal-tag lightblue-bg">TV and on-demand</span>
<span class="news-carousal-tag lightblue-bg">Topic</span>
<span class="news-carousal-tag lightblue-bg">Radio</span>
</div>
<h3 class="topics-txt">
Selected stories and the latest campaigns promoted here
</h3>
<div class="topic-hr-line"></div>
<div class="topics-date"> 01/02/2023</div>
</div>
</div>
<div class="col-md-12 col-lg-7 d-flex order-lg-1 order-sm-0">
<img src="assets/img/related-news-4.png" class="w-100" alt="">
</div>
</div>
</a>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#topics-carousel"
data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"><i
class="fa-solid fa-chevron-left"></i></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#topics-carousel"
data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"><i
class="fa-solid fa-chevron-right"></i></span>
<span class="visually-hidden">Next</span>