-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1368 lines (1356 loc) · 51.2 KB
/
Copy pathindex.html
File metadata and controls
1368 lines (1356 loc) · 51.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
Maths Intervention Programmes - Maths Tuition In Schools - Third Space
learning
</title>
<!-- favicon -->
<link
rel="apple-touch-icon-precomposed"
sizes="57x57"
href="/Favicon/apple-touch-icon-57x57.png"
/>
<link
rel="apple-touch-icon-precomposed"
sizes="114x114"
href="./Favicon/apple-touch-icon-114x114.png"
/>
<link
rel="apple-touch-icon-precomposed"
sizes="72x72"
href="./Favicon/apple-touch-icon-72x72.png"
/>
<link
rel="apple-touch-icon-precomposed"
sizes="144x144"
href="./Favicon/apple-touch-icon-144x144.png"
/>
<link
rel="apple-touch-icon-precomposed"
sizes="60x60"
href="./Favicon/apple-touch-icon-60x60.png"
/>
<link
rel="apple-touch-icon-precomposed"
sizes="120x120"
href="./Favicon/apple-touch-icon-120x120.png"
/>
<link
rel="apple-touch-icon-precomposed"
sizes="76x76"
href="./Favicon/apple-touch-icon-76x76.png"
/>
<link
rel="apple-touch-icon-precomposed"
sizes="152x152"
href="./Favicon/apple-touch-icon-152x152.png"
/>
<link
rel="icon"
type="image/png"
href="./Favicon/favicon-196x196.png"
sizes="196x196"
/>
<link
rel="icon"
type="image/png"
href="./Favicon/favicon-96x96.png"
sizes="96x96"
/>
<link
rel="icon"
type="image/png"
href="./Favicon/favicon-32x32.png"
sizes="32x32"
/>
<link
rel="icon"
type="image/png"
href="./Favicon/favicon-16x16.png"
sizes="16x16"
/>
<link
rel="icon"
type="image/png"
href="./Favicon/favicon-128.png"
sizes="128x128"
/>
<meta name="application-name" content=" " />
<meta name="msapplication-TileColor" content="#FFFFFF" />
<meta name="msapplication-TileImage" content="mstile-144x144.png" />
<meta name="msapplication-square70x70logo" content="mstile-70x70.png" />
<meta name="msapplication-square150x150logo" content="mstile-150x150.png" />
<meta name="msapplication-wide310x150logo" content="mstile-310x150.png" />
<meta name="msapplication-square310x310logo" content="mstile-310x310.png" />
<!-- stylesheets -->
<link rel="stylesheet" href="generics.css" />
<link rel="stylesheet" href="fonts.css" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header>
<div class="container-header">
<a href="#" class="first-logo-header"
><img
src="img/tsl-logo.webp"
alt="Third space learning logo"
class="logo"
/></a>
<nav>
<ul class="header-icon">
<li tabindex="0" class="focus">
<div class="burger">
<img src="./img/burger.svg" alt="Burger Menu Button" />
</div>
<div class="backdrop">
<ul class="come-down">
<li>
<a href="#"
><img
src="img/tsl-logo.webp"
alt="Third space learning logo"
class="logo logo-dropdown"
/></a>
</li>
<li tabindex="0" class="dropdown maths-tutoring-for-schools">
Maths Tutoring for Schools
<div class="arrow-down"></div>
<ul>
<li><a href="#">National Tutoring Programme</a></li>
<li><a href="#">Primary Programmes</a></li>
<li><a href="#">Secondary Programmes</a></li>
<li><a href="#">Multi-Academy Trusts</a></li>
</ul>
</li>
<li tabindex="0" class="dropdown how-it-works">
How it Works
<div class="arrow-down"></div>
<ul>
<li><a href="#">Impact</a></li>
<li><a href="#">Case Studies</a></li>
<li><a href="#">Our Tutors</a></li>
</ul>
</li>
<li tabindex="0" class="dropdown Resources">
Resources
<div class="arrow-down"></div>
<ul>
<li>
<a href="#">Primary Maths Resources (Free)</a>
</li>
<li>
<a href="#"
>Primary Maths Resources (Premium)</a
>
</li>
<li>
<a href="#">Secondary Maths Resources (Free)</a>
</li>
<li>
<a href="#"
>- GCSE Maths Revision Guide (Free)</a
>
</li>
<li>
<a href="#">- GCSE Maths Papers (Free)</a>
</li>
<li>
<a href="#"
>- GCSE Maths Revision Resources (Free)</a
>
</li>
<li>
<a href="#">Senior Leader Zone (Free)</a>
</li>
</ul>
</li>
<li tabindex="0" class="dropdown pricing">
Pricing
<div class="arrow-down"></div>
<ul>
<li><a href="#">Maths Tutoring Pricing</a></li>
<li>
<a href="#">Premium Maths Resources Subscriptions</a>
</li>
</ul>
</li>
<li class="dropdown blog">
<a href="" class="blog">Blog</a>
</li>
<li class="dropdown">
<button class="btn btn-yellow request-quote-btn">
Request a quote
</button>
</li>
<li class="dropdown">
<button class="btn btn-blue log-in-btn">Log in</button>
</li>
</ul>
</div>
</li>
</ul>
</nav>
</div>
</header>
<main>
<!-- Closing the maths attainment gap -->
<section class="video-section">
<h1>
Closing the maths attainment gap with
<span class="yellow-box">one to one teaching</span>
</h1>
<p>
Personalised online tutoring programmes built for schools by maths
experts
</p>
<div class="container-video-computer">
<picture>
<source
media="(max-width: 300px)"
src="./img/Component-26-300x283.png" />
<source media="(min-width: 301px)" src="./img/Component-26.png" />
<img src="img/boy-with-headphones.webp" alt="Boy with headset"
/></picture>
<div class="videoandtext">
<div class="iframe-container">
<iframe
width="560"
height="315"
src="https://www.youtube.com/embed/XK_4Omh9CjI?si=QfOWYAxtxL2YFVbOcontrols=0&mute=1&autoplay=1"
title="YouTube video player"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin"
allowfullscreen
></iframe>
</div>
<p class="hear">
<img
src="./img/volume-up.png"
alt="icon of speaker"
class="speaker"
/>Press play to see and hear this session
</p>
</div>
<picture>
<source
media="(max-width: 300px)"
src="./img/Component-27-300x293.png" />
<source media="(min-width: 301px)" src="./img/Component-27.png" />
<img
src="img/teacher-with-headphones.webp"
alt="teacher with headset"
/></picture>
</div>
<div class="container-btn">
<button class="btn btn-yellow request-quote-intro">
Request a quote
</button>
<button class="btn btn-blue how-it-works-btn-intro">
How it works
</button>
</div>
</section>
<!-- consistent and reliable maths support for schools -->
<section class="consistent">
<div>
<h4>Consistent and reliable maths support for schools</h4>
<p>
We believe teachers should have as much time as possible to do what
they do best; high-quality whole class teaching.
</p>
<p>
That's why we've spent the last 10 years working with
schools like yours to provide extra support to teachers wherever you
need it:
</p>
<form class="container-form">
<input
type="radio"
id="underline1"
class="underline"
name="underline"
checked
/><label for="underline1" id="label-underline1"
><img
src="./img/looking-glass.svg"
alt="Looking glass"
class="looking-glass"
/><span>Cost-effective-DFE-approved tutoring</span></label
>
<input
type="radio"
id="underline2"
class="underline"
name="underline"
/><label for="underline2" id="label-underline2">
<img
src="./img/looking-glass.svg"
alt="Looking glass"
class="looking-glass"
/><span>Free primary maths resources</span></label
>
<input
type="radio"
id="underline3"
class="underline"
name="underline"
/><label for="underline3" id="label-underline3">
<img
src="./img/looking-glass.svg"
alt="Looking glass"
class="looking-glass"
/><span>Free secondary maths resources</span></label
>
<input
type="radio"
id="underline4"
class="underline"
name="underline"
/><label for="underline4" id="label-underline4">
<img
src="./img/looking-glass.svg"
alt="Looking glass"
class="looking-glass"
/><span>Premium primary maths resources and CPD</span></label
>
<div class="container-changing-pictures">
<div class="cost-effective" id="cost-effective">
<picture>
<source
media="(max-width: 300px)"
src="./img/dfe-approved-tutoring-programmes-1-1-300x119.png" />
<source
media="(min-width: 301px)"
src="./img/dfe-approved-tutoring-programmes-1-1-768x304.png" />
<source
media="(min-width: 768px)"
src="./img/dfe-approved-tutoring-programmes-1-1-1024x405.png" />
<source
media="(min-width: 1024px)"
src="./img/dfe-approved-tutoring-programmes-1-1.png" />
<img
src="img/img-consistent-reliable-support.webp"
alt="Picture of screens with math"
/></picture>
<div class="container-links">
<a href=""
>Explore primary tutoring programmes<img
src="img/right-arrow.svg"
alt="arrow pointing right"
class="right-arrow"
/></a>
<a href=""
>Explore secondary tutoring programmes<img
src="img/right-arrow.svg"
alt="arrow pointing right"
class="right-arrow"
/></a>
</div>
</div>
<div class="free-primary" id="free-primary">
<picture>
<source
media="(max-width: 300px)"
src="./img/Free-primary-maths-resources-1-1-300x119.png" />
<source
media="(min-width: 301px)"
src="./img/Free-primary-maths-resources-1-1-768x303.png" />
<source
media="(min-width: 768px)"
src="./img/Free-primary-maths-resources-1-1-1024x405.png" />
<source
media="(min-width: 1024px)"
src="./img/Free-primary-maths-resources-1-1.png" />
<img
src="img/free.webp"
alt="Picture of screens with free worksheets"
/></picture>
<div class="container-links">
<a href=""
>Explore all free primary resources<img
src="img/right-arrow.svg"
alt="arrow pointing right"
class="right-arrow"
/></a>
<a href=""
>Already have an account? Log in here<img
src="img/right-arrow.svg"
alt="arrow pointing right"
class="right-arrow"
/></a>
</div>
</div>
<div class="free-secondary" id="free-secondary">
<picture>
<source
media="(max-width: 300px)"
src="./img/free-gcse-maths-resources--300x119.png" />
<source
media="(min-width: 301px)"
src="./img/free-gcse-maths-resources--768x304.png" />
<source
media="(min-width: 768px)"
src="./img/free-gcse-maths-resources--1024x405.png" />
<source
media="(min-width: 1024px)"
src="./img/free-gcse-maths-resources-.png" />
<img
src="img/free-secondary-maths-resources.webp"
alt="Picture of free worksheets"
/></picture>
<div class="container-links">
<a href=""
>Explore free KS3 maths resources<img
src="img/right-arrow.svg"
alt="arrow pointing right"
class="right-arrow"
/></a>
<a href=""
>Explore free GCSE maths resources<img
src="img/right-arrow.svg"
alt="arrow pointing right"
class="right-arrow"
/></a>
</div>
</div>
<div class="premium-primary" id="premium-primary">
<picture>
<source
media="(max-width: 300px)"
src="./img/Premium-primary-maths-resources-and-cpd-1-1-300x119.png" />
<source
media="(min-width: 301px)"
src="./img/Premium-primary-maths-resources-and-cpd-1-1-768x303.png" />
<source
media="(min-width: 768px)"
src="./img/Premium-primary-maths-resources-and-cpd-1-1-1024x405.png" />
<source
media="(min-width: 1024px)"
src="./img/Premium-primary-maths-resources-and-cpd-1-1.png" />
<img
src="img/premium-primary-maths-resources-and-CPD.webp"
alt="Cards with worksheets"
/></picture>
<div class="container-links">
<a href=""
>Explore all premium primary resources<img
src="img/right-arrow.svg"
alt="arrow pointing right"
class="right-arrow"
/></a>
<a href=""
>View resource subscription plans and pricing<img
src="img/right-arrow.svg"
alt="arrow pointing right"
class="right-arrow"
/></a>
</div>
</div>
</div>
</form>
</div>
</section>
<!-- Maths tutoring programmes -->
<section class="maths-tutoring">
<h2>Maths tutoring programmes trusted by 4,000 schools since 2013</h2>
<div class="container-grid-maths">
<div>
<picture>
<source
media="(max-width: 300px)"
src="./img/boost-ks2-progress-in-maths-300x228.png"
/>
<source
media="(min-width: 301px)"
src="./img/boost-ks2-progress-in-maths.png"
/>
<img
src="img/boost-ks2-progress.webp"
alt="Teacher explaining fractions online"
/>
</picture>
<h3>Boost KS2 progress</h3>
<p>
Address gaps from Year 1-6, build arithmetic and reasoning skills
and prepare pupils for KS2 maths SATs.
</p>
<button class="btn btn-blue view-ks2">View KS2 programmes</button>
</div>
<div>
<picture>
<source
media="(max-width: 300px)"
src="./img/Year-7-programme-slide-image-300x228.png"
/>
<source
media="(min-width: 301px)"
src="./img/Year-7-programme-slide-image-768x583.png"
/>
<source
media="(min-width: 768px)"
src="./img/Year-7-programme-slide-image.png"
/>
<img
src="img/Year-7-programme-slide-image.webp"
alt="Teacher explaining decimals online"
/>
</picture>
<h3>Ease KS3 transition</h3>
<p>
Help ease the transition for Year 7 students who are struggling to
access the KS3 curriculum.
</p>
<button class="btn btn-green view-year7">
View Year 7 programme
</button>
</div>
<div>
<picture>
<source
media="(max-width: 300px)"
src="./img/GCSE-revision-slide-image-2-300x228.png"
/>
<source
media="(min-width: 301px)"
src="./img/GCSE-revision-slide-image-2-768x583.png"
/>
<source
media="(min-width: 768px)"
src="./img/GCSE-revision-slide-image-2.png"
/>
<img
src="img/GCSE-programme.webp"
alt="Teacher explaining angles online"
/>
</picture>
<h3>Prepare for GCSEs</h3>
<p>
Provide targeted revision opportunities to help more students
achieve their target grade.
</p>
<button class="btn btn-darkblue view-GCSE">
View GCSE programme
</button>
</div>
</div>
</section>
<!-- banner -->
<div class="container-banner">
<div class="banner">
<img src="img/rising-starts.webp" alt="Rising Stars logo" />
<p>
In an independent trial with Rising Stars, pupils receiving one to
one maths support from Third Space Learning made 7 months'
progress in 14 weeks.
</p>
</div>
</div>
<!-- Why schools like yours choose TSL -->
<section class="why">
<h2>Why schools like yours choose Third Space Learning</h2>
<div class="reach-more-pupils">
<picture>
<source
media="(max-width: 300px)"
src="./img/Choose-your-third-space-learning-students-300x231.png"
/>
<source
media="(min-width: 301px)"
src="./img/Choose-your-third-space-learning-students.png"
/>
<img
src="img/reach-more-pupils-at-once.webp"
alt="Overview of planned sessions"
/>
</picture>
<div>
<h3>Reach more pupils at once</h3>
<p>
You <b>choose which pupils</b> need support; we'll provide
a <b>dedicated specialist maths tutor</b> and a
<b>personalised learning journey</b> for each one
</p>
<q
>This provides the opportunity for a large number of children to
engage in a bespoke maths intervention at the same time - with
personalised objectives so everyone is at the right level.
</q>
<p>Jane Powell, Assistant Head, Barton Seagrave Primary School</p>
<button class="btn btn-blue how-it-works-btn">How it works</button>
</div>
</div>
<div class="address-individual-gaps">
<picture>
<source
media="(max-width: 300px)"
src="./img/primary-kick-off-quiz-homepage-300x171.png"
/>
<source
media="(min-width: 301px)"
src="./img/primary-kick-off-quiz-homepage-768x437.png"
/>
<source
media="(min-width: 768px)"
src="./img/primary-kick-off-quiz-homepage.png"
/>
<img
src="img/address-individual-gaps.webp"
alt="Display of setting individual goals for student"
/>
</picture>
<div>
<h3>Address individual gaps</h3>
<p>
Tutoring content, pitch and pace is fully personalised following
<b>diagnostic and in-session assessments</b>, meaning you can plug
individual gaps across cohorts.
</p>
<q
>No matter how much of a good teacher you are, you can never get
to 30 children and do 30 different pieces of work and that is what
is needed. It's the best type of intervention you can have</q
>
<p>Angela Kershaw, Maths Leader, St Augustine's Academy</p>
<button class="btn btn-blue school-reviews">
Read school reviews
</button>
</div>
</div>
<div class="maximise-school-funding">
<picture>
<source
media="(max-width: 300px)"
src="./img/cost-effective-tutoring-primary-and-secondary-300x122.png"
/>
<source
media="(min-width: 301px)"
src="./img/cost-effective-tutoring-primary-and-secondary-768x312.png"
/>
<source
media="(min-width: 768px)"
src="./img/cost-effective-tutoring-primary-and-secondary.png"
/>
<img
src="img/maximize-school-funding.webp"
alt="Students working behind computers"
/>
</picture>
<div>
<h3>Maximise school funding</h3>
<p>
We're proud to be the
<b>most affordable DfE-approved</b> one to one tutoring provider,
with subsidised tutoring available through the National Tutoring
Programme
</p>
<q
>It's just as effective as bringing in a one to one tutor but
it's so much cheaper, so you can afford to have more children
doing it.</q
>
<p>Clare Sealy, Headteacher, St Matthias Primary School, London</p>
<button class="btn btn-blue pricing-funding">
Pricing and funding
</button>
</div>
</div>
<div class="free-up-staff-time">
<picture>
<source
media="(max-width: 300px)"
src="./img/KS2-interventions-hero-image-1-300x232.png"
/>
<source
media="(min-width: 301px)"
src="./img/KS2-interventions-hero-image-1.png"
/>
<img
src="img/free-up-staff-time.webp"
alt="Profile of two students"
/>
</picture>
<div>
<h3>Free up staff time</h3>
<p>
Schools have a reliable, consistent and easy-to-run intervention
for their target groups, giving class teachers
<b>more time to focus on whole class teaching</b>
</p>
<q
>It's organised and just happens for the children each week.
They look forward to it. It makes personalisation nice and easy -
for a change!</q
>
<p>Judy Coles, Headteacher, Hague Primary School</p>
<button class="btn btn-blue impact">Impact in schools</button>
</div>
</div>
<div class="save-on-staff-training">
<picture>
<source
media="(max-width: 300px)"
src="./img/third-space-learning-maths-tutors-training-300x186.png"
/>
<source
media="(min-width: 301px)"
src="./img/third-space-learning-maths-tutors-training.png"
/>
<img
src="img/save-on-staff-training.webp"
alt="Display of tutor training portal"
/>
</picture>
<div>
<h3>Save on staff training</h3>
<p>
All programmes are built by former
<bold>maths teachers and pedagogy experts</bold>; all tutors
are <bold>STEM specialists</bold> who complete intensive initial
and ongoing maths tutor training
</p>
<q
>It's such a fantastic, well-researched programme. It's
had a huge impact on our pupils' maths learning. The tutors
really build pupils' metacognition..</q
>
<p>Simrat Mavi, Deputy Head, St Giles CE Primary School</p>
<button class="btn btn-blue meet-tutors">Meet our tutors</button>
</div>
</div>
</section>
<!-- turning cards -->
<div class="container-turning-cards">
<div class="turning-cards">
<div class="turning-cards-inner schools-supported">
<div class="front">
<p class="number">4,052</p>
<p>Schools supported</p>
<img src="img/cursor.svg" alt="Cursor hand" />
</div>
<div class="back">
<q
>The way the tuition is set up is seamless. One of the Deputy
Heads recently observed a session and he immediately said
"This is fantastic!". I was thrilled that he had the
opportunity to see how engaged the students were.</q
>
<p>
Darren Madourie, Maths Teacher<br />
Holte School, Birmingham
</p>
</div>
</div>
<div class="turning-cards turning-cards-two">
<div class="turning-cards-inner pupils-taught">
<div class="front">
<p class="number">162,075</p>
<p>Pupils taught</p>
<img src="img/cursor.svg" alt="Cursor hand" />
</div>
<div class="back">
<p class="quote-turning-cards">
"This will really help me so much!<br /><br />
I'm getting more and more confident for my SATs every time
I do these sessions! Thank you!"
</p>
<p>Year 6 pupil<br />Liverpool</p>
</div>
</div>
</div>
</div>
</div>
<!-- carousel -->
<div class="carousel-container">
<input type="radio" name="carousel-form" id="maria-next" />
<input type="radio" name="carousel-form" id="maria-back" checked />
<div class="carousel-item" id="maria">
<div class="container-carousel-img">
<img
src="img/quote.svg"
alt="Blue quotations"
class="quotation"
/><img
src="img/st-pauls-middle-school-small-1.svg"
alt="logo Saints Pauls Middle School"
class="logo-carousel"
/>
</div>
<div>
<p>
My staff love the resources and are helpful to their teaching and
assessment. Most importantly, the impact upon learning for the
specific groups of pupils receiving the 1-to-1 lessons is highly
effective. It's such a great support to teaching and learning.
</p>
<p>Maria Wilson</p>
<p>Headteacher, St Pauls Middle School , Northumberland</p>
<a href=""><span>Maths Tuition</span></a>
</div>
<div class="container-arrows">
<label for="" class="label-arrow-maria">
<img src="img/left-arrow.svg" alt="left arrow" class="arrow"
/></label>
<label for="catherine-next" class="label-arrow-maria"
><img src="img/right-arrow.svg" alt="right arrow" class="arrow"
/></label>
</div>
</div>
<input type="radio" name="carousel-form" id="catherine-next" />
<input type="radio" name="carousel-form" id="catherine-back" />
<div class="carousel-item" id="catherine">
<div class="container-carousel-img">
<img
src="img/quote.svg"
alt="Blue quotations"
class="quotation"
/><img
src="img/griffin-park-primary.svg"
alt="logo Griffin Park Primary School"
class="logo-carousel"
/>
</div>
<div>
<p>
Targeted support for the children which is personalised to their
own level, which helps them to make progress and achieve Age
Related Expectations.
</p>
<p>Catherine Clayton-Young</p>
<p>Headteacher, Griffin Park Primary School, Blackburn</p>
<a href=""><span>One To One Tuition</span></a>
</div>
<div class="container-arrows">
<label for="maria-back"
><img
src="img/left-arrow.svg"
alt="left arrow"
class="arrow" /></label
><label for="mandy-next"
><img src="img/right-arrow.svg" alt="right arrow" class="arrow"
/></label>
</div>
</div>
<input type="radio" name="carousel-form" id="mandy-next" />
<input type="radio" name="carousel-form" id="mandy-back" />
<div class="carousel-item" id="mandy">
<div class="container-carousel-img">
<img
src="img/quote.svg"
alt="Blue quotations"
class="quotation"
/><img
src="img/Oxley-primary-school.svg"
alt="logo Oxley Primary School"
class="logo-carousel"
/>
</div>
<div>
<p>
Third Space fills in little gaps that can really hold children
back. The customer service is fantastic every time and they
couldn't be more helpful. The children love doing Third Space and
their confidence rockets!
</p>
<p>Mandy Spivey</p>
<p>Maths Coordinator, Oxley Primary School, Leicestershire</p>
<a href=""><span>Primary School Tuition</span></a>
</div>
<div class="container-arrows">
<label for="catherine-back"
><img
src="img/left-arrow.svg"
alt="left arrow"
class="arrow" /></label
><label for="gemma-next"
><img src="img/right-arrow.svg" alt="right arrow" class="arrow"
/></label>
</div>
</div>
<input type="radio" name="carousel-form" id="gemma-next" />
<input type="radio" name="carousel-form" id="gemma-back" />
<div class="carousel-item" id="gemma">
<div class="container-carousel-img">
<img
src="img/quote.svg"
alt="Blue quotations"
class="quotation"
/><img
src="img/Priory-primary.svg"
alt="logo Priory Primary School"
class="logo-carousel"
/>
</div>
<div>
<p>
Our children all really enjoy taking part in the program and we
have seen increased confidence and progress in their maths
learning.
</p>
<p>Gemma Blunt</p>
<p>Maths Leader, Priory Primary School, Dudley</p>
<a href=""><span>Online Tuition for Maths</span></a>
</div>
<div class="container-arrows">
<label for="mandy-back"
><img
src="img/left-arrow.svg"
alt="left arrow"
class="arrow" /></label
><label for="abi-next"
><img src="img/right-arrow.svg" alt="right arrow" class="arrow"
/></label>
</div>
</div>
<input type="radio" name="carousel-form" id="abi-next" />
<input type="radio" name="carousel-form" id="abi-back" />
<div class="carousel-item" id="abi">
<div class="container-carousel-img">
<img
src="img/quote.svg"
alt="Blue quotations"
class="quotation"
/><img
src="img/holy-trinity.svg"
alt="logo Holy Trinity Primary School"
class="logo-carousel"
/>
</div>
<div>
<p>
The 1-to-1 tuition is a great addition to our support for
pupils receiving Pupil Premium, and the resources are high quality
and up to date with recent research.
</p>
<p>Abi Hann</p>
<p>Deputy Headteacher, Holy Trinity Primary School, Merton</p>
<a href=""><span>One To One Tuition</span></a>
</div>
<div class="container-arrows">
<label for="gemma-back"
><img
src="img/left-arrow.svg"
alt="left arrow"
class="arrow" /></label
><label for="daniel-next"
><img src="img/right-arrow.svg" alt="right arrow" class="arrow"
/></label>
</div>
</div>
<input type="radio" name="carousel-form" id="daniel-next" />
<input type="radio" name="carousel-form" id="daniel-back" />
<div class="carousel-item" id="daniel">
<div class="container-carousel-img">
<img src="img/quote.svg" alt="Blue quotations" class="quotation" />
<img
src="img/Choppington.svg"
alt="logo Choppington Primary School"
class="logo-carousel"
/>
</div>
<div>
<p>
There are a number of reasons that I recommend Third Space
Learning; the resources on the Maths Hub are great, the sessions
for the children are good and they enjoy them and for the progress
the children are making.
</p>
<p>Daniel Nelson</p>
<p>Headteacher, Choppington Primary School, Northumberland</p>
<a href=""><span>Primary School Tuition</span></a>
</div>
<div class="container-arrows">
<label for="abi-back"
><img
src="img/left-arrow.svg"
alt="left arrow"
class="arrow" /></label
><label for="angie-next"
><img src="img/right-arrow.svg" alt="right arrow" class="arrow"
/></label>
</div>
</div>
<input type="radio" name="carousel-form" id="angie-next" />
<input type="radio" name="carousel-form" id="angie-back" />
<div class="carousel-item" id="angie">
<div class="container-carousel-img">
<img src="img/quote.svg" alt="Blue quotations" class="quotation" />
<img
src="img/giles-brook-big.jpg"
alt="logo Giles Brook Primary"
class="logo-carousel"
/>
</div>
<div>
<p>
A great all round experience. The children love their sessions,
enjoy working with their tutors and the sessions make a real
difference to their understanding and application of maths. The