-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.dev.html
executable file
·723 lines (554 loc) · 24.4 KB
/
index.dev.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
<link rel="manifest" href="manifest.json">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<title>Invicta App</title>
<meta name="apple-mobile-web-app-title" content="Invicta App">
<meta name="application-name" content="Invicta App">
<!-- fav and touch icons -->
<link rel="shortcut icon" href="images/icons/favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="images/icons/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="images/icons/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="images/icons/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="images/icons/apple-touch-icon-57-precomposed.png">
<link rel="shortcut icon" sizes="196x196" href="images/icons/icon-196.png">
<!-- STYLES, aka CSS -->
<link href='https://fonts.googleapis.com/css?family=Crafty+Girls' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Indie+Flower' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/fontAwesome.css">
<link rel="stylesheet" href="css/audioPlayer.css">
<link rel="stylesheet" href="css/slick.css">
<!-- <link rel="stylesheet" href="css/remixBar.css">-->
<link rel="stylesheet" href="css/fonts.css">
<link rel="stylesheet" href="css/texts.css">
<link rel="stylesheet" href="css/button.css">
<link rel="stylesheet" href="css/colours.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/menu.css">
<link rel="stylesheet" href="css/article.css">
<link rel="stylesheet" href="css/bigScreens.css">
<link rel="stylesheet" href="css/reception.css">
<link rel="stylesheet" href="css/year1.css">
<link rel="stylesheet" href="css/year2.css">
<link rel="stylesheet" href="css/year3.css">
<link rel="stylesheet" href="css/year4.css">
<link rel="stylesheet" href="css/year5.css">
<!-- SCRIPTS, aka JS -->
<script src="js/libraries/jquery.js"></script>
<script src="js/libraries/jquery.audioPlayer.js"></script>
<script src="js/libraries/jquery.slick.js"></script>
<script src="js/menu.js"></script>
<script src="js/videos.js"></script>
<script src="js/audios.js"></script>
<script src="js/sliders.js"></script>
</head>
<body>
<nav class="menu">
<a class="toggle fa fa-bars"></a>
<ul>
<li goTo="home" class="active">Home</li>
<li goTo="eyfs">EYFS</li>
<li goTo="year1">Year 1</li>
<li goTo="year2">Year 2</li>
<li goTo="year3">Year 3</li>
<li goTo="year4">Year 4</li>
<li goTo="year5">Year 5</li>
</ul>
</nav>
<article>
<section name="home" class="active">
<img src="images/invictaLogo.png">
<h1>Welcome to Invicta Primary Enterprise Week!</h1>
<p>Our challenge this term is <b>How can we successfully create a mini-enterprise?</b></p>
<p>Take a look inside to see our amazing outcomes! </p>
<div id="year4digitalleadersphoto">
<img src="images/home/digital-leaders.jpg">
</div>
<div id="year4thankyou">
<img src="images/home/Thank-you.png">
</div>
</section>
<section name="eyfs" class="eyfs">
<h1>Reception</h1>
<h3>Blackheath</h3>
<img src="images/reception/blackheath/galleon.jpg">
<img src="images/reception/blackheath/o'malley.jpg">
<ul class="receptionSlider">
<li class="slide">
<img src="images/reception/blackheath/slideshow/s1.JPG"/>
</li>
<li class="slide">
<img src="images/reception/blackheath/slideshow/s2.JPG"/>
</li>
<li class="slide">
<img src="images/reception/blackheath/slideshow/s3.JPG"/>
</li>
<li class="slide">
<img src="images/reception/blackheath/slideshow/s4.JPG"/>
</li>
<li class="slide">
<img src="images/reception/blackheath/slideshow/s5.JPG"/>
</li>
<li class="slide">
<img src="images/reception/blackheath/slideshow/s6.JPG"/>
</li>
<li class="slide">
<img src="images/reception/blackheath/slideshow/s7.JPG"/>
</li>
<li class="slide">
<img src="images/reception/blackheath/slideshow/s8.JPG"/>
</li>
<li class="slide">
<img src="images/reception/blackheath/slideshow/s9.JPG"/>
</li>
<li class="slide">
<img src="images/reception/blackheath/slideshow/s10.JPG"/>
</li>
<li class="slide">
<img src="images/reception/blackheath/slideshow/s12.JPG"/>
</li>
<li class="slide">
<img src="images/reception/blackheath/slideshow/s13.JPG"/>
</li><li class="slide">
<img src="images/reception/blackheath/slideshow/s14.JPG"/>
</li>
<li class="slide">
<img src="images/reception/blackheath/slideshow/s15.JPG"/>
</li>
</ul>
<p class="darkred">
Reception classes in Blackheath have been working hard to read and write their own recipes, weigh ingredients and use money. We have worked with our partner Peter Blaxall , a professional chef to create our own Taste of Invicta recipe! Join us for an International Food Night on Thursday the 17th March from 4-6pm at Shooters Hill Rugby Club!
</p>
<h2>Deptford</h2>
<img src="images/reception/deptford/omally.jpg">
<img src="images/reception/deptford/Galleon-Class.jpg">
<ul class="receptionSlider">
<li class="slide">
<img src="images/reception/deptford/invictadeptford1.jpg"/>
</li>
<li class="slide">
<img src="images/reception/deptford/invictadeptford2.jpg"/>
</li>
<li class="slide">
<img src="images/reception/deptford/invictadeptford3.jpg"/>
</li>
<li class="slide">
<img src="images/reception/deptford/invictadeptford4.jpg"/>
</li>
<li class="slide">
<img src="images/reception/deptford/invictadeptford5.jpg"/>
</li>
<li class="slide">
<img src="images/reception/deptford/invictadeptford6.jpg"/>
</li>
<li class="slide">
<img src="images/reception/deptford/invictadeptford7.jpg"/>
</li>
<li class="slide">
<img src="images/reception/deptford/invictadeptford8.jpg"/>
</li>
<li class="slide">
<img src="images/reception/deptford/invictadeptford9.jpg"/>
</li>
</ul>
<p class="deptford">
Invicta Deptford is celebrating the cultural diversity of the children and families that make our school so special. We are hosting a 'Taste The World Event' with our partner Lean Mean Moroccan Cuisine.It’s an opportunity to experience different dishes from countries far and wide. The children are incredibly excited and about their event. Please join us at Invicta Deptford on Friday the 18th of March 3pm - 4pm for an array of tasty treats, music and cultural costumes.
</p>
<h1>Nursery</h1>
<img src="images/nursery/image.jpg">
<ul class="receptionSlider">
<li class="slide">
<img src="images/nursery/n1.jpg"/>
</li>
<li class="slide">
<img src="images/nursery/n2.jpg"/>
</li>
<li class="slide">
<img src="images/nursery/n3.jpg"/>
</li>
<li class="slide">
<img src="images/nursery/n4.jpg"/>
</li>
<li class="slide">
<img src="images/nursery/n5.jpg"/>
</li>
<li class="slide">
<img src="images/nursery/n6.jpg"/>
</li>
<li class="slide">
<img src="images/nursery/n7.jpg"/>
</li>
<li class="slide">
<img src="images/nursery/n8.jpg"/>
</li>
<li class="slide">
<img src="images/nursery/n9.jpg"/>
</li>
<li class="slide">
<img src="images/nursery/n10.jpg"/>
</li>
<li class="slide">
<img src="images/nursery/n11.jpg"/>
</li>
<li class="slide">
<img src="images/nursery/n12.jpg"/>
</li>
<li class="slide">
<img src="images/nursery/n13.jpg"/>
</li>
</ul>
<p>Nursery have made playdough by following a recipe and weighing out ingredients . We we weighed and mixed the ingredients together. Our partner WildPixel.Ltd helped us to design a recipe page. You can buy our recipe for 50p. It comes in it’s own amazing egg shaped surprise.</p>
</section>
<section name="year1">
<h1 class="nelson">Year 1</h1>
<img class="class-photos" src="images/year1/class1.jpg">
<img class="class-photos" src="images/year1/class2.jpg">
<p class="nelson2">We have designed an amazing, reusable cotton tote.
It has a bird's eye view map of Brilliant Blackheath Standard, designed by children.
Scroll down to listen to our amazing e-book and find out all about Brilliant Blackheath and all of the fantastic places to shop.
Don’t forget to visit The Voewood and Blackheath Library to buy your bag. They cost £4 each. </p>
<p class="nelson">In Year 1 we have been learning all about our local area. </p>
<ul id="year1AudioBook">
<li class="slide">
<img src="images/year1/front-cover.jpg"/>
<audio src="audios/year1/intro.mp3" preload="none" controls></audio>
</li>
<li class="slide">
<img src="images/year1/library.png">
<audio src="audios/year1/library.mp3" preload="none" controls></audio>
</li>
<li class="slide">
<img src="images/year1/fish-bar.png"/>
<audio src="audios/year1/fish-shop.mp3" preload="none" controls></audio>
</li>
<li class="slide">
<img src="images/year1/ottie-and-the-bea.png"/>
<audio src="audios/year1/ottie-and-the-bea.mp3" preload="none" controls></audio>
</li>
<li class="slide">
<img src="images/year1/voewood.png">
<audio src="audios/year1/voewood.mp3" preload="none" controls></audio>
</li>
</ul>
</section>
<section name="year2">
<h1>Year 2</h1>
<img src="images/year2/deman.jpg">
<img src="images/year2/cutty-sark.jpg">
<p>Year 2 have been learning all about growing plants, how to be healthy and their local area. They have teamed up with local green grocer Apple N Orange to create soup kits from their delicious vegetables. Both classes carried out meticulous market research to identify type of product, pricing and flavour, which even included their own ‘blind’ tasting soup session. The classes chose to sell soup kits rather than ready made soups as they experienced soup making themselves on a trip to Woodlands farm and decided they wanted all the fun of making their soups as well as eating them! The soups are a delicious, nutritious and healthy treat and great fun to make for all the family. So if you want to try it out for yourself head to Apple N Orange on Blackheath Standard to buy your very own vegetable soup kit.</p>
<h2>How to make tasty leek soup</h2>
<img src="images/year2/recipe/step12.JPG" width="60%">
<!-- Recipe -->
<!-- Igrediants -->
<h3>
Ingredients
</h3>
<ul>
<li> 1 onion</li>
<li> 1 potato</li>
<li> 2 carrots</li>
<li> 1 leek</li>
<li> 500ml vegetable stock</li>
<li> 1 teaspoon of oil</li>
<li> 1 teaspoon of paprika</li>
<li> 1 teaspoon of basil</li>
<li> 1 teaspoon of tomato puree</li>
<li> A pinch of pepper</li>
</ul>
<!-- Step One -->
<div class="steps" id="firststep">
<h3>
First Step
</h3>
<img src="images/year2/recipe/step1.JPG" width="50%">
<p class="method">
First wash your hands with soap and then wash the leek, ensuring you remove any possible mud.
</p>
</div>
<!-- Step Two -->
<div class="steps" id="secondstep">
<h3>
Second Step
</h3>
<img src="images/year2/recipe/step2.JPG">
<img src="images/year2/recipe/step3.JPG">
<p class="method">
Next finely chop the vegetables and whilst you are chopping gently heat the oil in a pan.
</p>
</div>
<!-- Step Three -->
<div class="steps" id="thirdstep">
<h3>
Third Step
</h3>
<img src="images/year2/recipe/step4.JPG">
<p class="method">
Once the oil is hot, add the chopped onion and leek and fry until soft.
</p>
</div>
<!-- Step Four -->
<div class="steps" id="fourthstep">
<h3>
Fourth Step
</h3>
<img src="images/year2/recipe/step5.JPG">
<p class="method">
When the onion and leek are ready, add the carrot and potato and cook for 5 minutes, stirring frequently.
</p>
</div>
<!-- Step Five -->
<div class="steps" id="fifthstep">
<h3>
Fifth Step
</h3>
<img src="images/year2/recipe/step7.JPG">
<img src="images/year2/recipe/step8.JPG">
<img src="images/year2/recipe/step9.JPG">
<img src="images/year2/recipe/step10.JPG">
<p class="method">
After that, carefully pour in the vegetable stock and then you can add the tomato puree, paprika, basil and pepper.
</p>
</div>
<!-- Step Six -->
<div class="steps" id="sixthstep">
<h3>
Sixth Step
</h3>
<img src="images/year2/recipe/step6.JPG">
<p class="method">
Slowly stir the soup and let it simmer for 15 minutes or until the vegetables are cooked thoroughly.
</p>
</div>
<!-- Step Seven -->
<div class="steps" id="seventhstep">
<h3>
Seventh Step
</h3>
<img src="images/year2/recipe/step11a.JPG">
<p class="method">
Let the soup cool for 5 minutes and then cautiously blend using a hand blender.
</p>
</div>
<!-- Step Eight -->
<div class="steps" id="eighthstep">
<h3>
Eighth Step
</h3>
<img src="images/year2/recipe/step11b.JPG">
<img src="images/year2/recipe/step12.JPG">
<p class="method">
Blend until the soup is at the desired consistency, serve and enjoy!
</p>
</div>
</section>
<section name="year3">
<h1>Year 3</h1>
<!-- <p>Hello! We are Year 3 and we are hoping to impress you with our hard work on growing plants and vegetables. We would like you to support us and help people live <span class="Dog">HEALTHIER!</span> We have also been working hard on making our app, so we hope you appreciate it. Everybody in the class has had their own job to do in this project.
</p> -->
<p>Hello! We are Year 3 and we are hoping to impress you with our hard work on growing plants and vegetables. We would like you to support us and help people live <span class="Dog">HEALTHIER LIVES</span> by growing their own vegetables. We are selling seed kits with 12 types of seeds at Passion Flower. They cost £5 each.
</p>
<p class="drake">This is Drake class!</p>
<img class="frame" src="images/year3/class1.jpg">
<p>This video is about plants and we really want you to see it.</p>
<iframe class="dashed" width="560" height="315" src="https://www.youtube.com/embed/H489t8LcaLU" frameborder="0" allowfullscreen></iframe>
<p class="drake">This is Golden Hinde class!</p>
<img class="frame" src="images/year3/class2.jpg">
<p>This video is about planting seeds.</p>
<iframe class="dashed" width="560" height="315" src="https://www.youtube.com/embed/6Qw1jp9Ov-o" frameborder="0" allowfullscreen></iframe>
<p>This page was made by Ella and Daniel.</p>
</section>
<section name="year4">
<div id="year4body">
<h1>Year 4</h1>
<iframe width="560" height="315" src="https://www.youtube.com/embed/vrsxiTW2YoY" frameborder="0" allowfullscreen></iframe>
<p>Welcome to our exciting Enterprise Week!
In year 4 we have been working hard to create a fun way to encourage people to take part in weekly exercise. We have also been making healthy energy drinks, to promote being healthy.
Our exciting exercise class will be FREE!<br><br>
After the energetic exercise class you can get a tasty, but still healthy, energy drink for a small price.
Our refreshing energy drinks are made the day of your exercise class with fresh fruits.<br><br>
Energetic Exercise to Fun Fitness
Fresh Fruits to Energy Drinks<br>
<br>
Year 4 are sure that this app has everything you need to keep healthy and fit…so book now to avoid disappointment!</p><br>
<div id="year4beagleclasstext">
<p>Beagle Class</p>
</div>
<div id="year4beagleclassphoto">
<img src="images/year4/beagleClass.jpg">
</div>
<div id="year4darwinclasstext">
<p>Darwin Class</p>
</div>
<div id="year4darwinclassphoto">
<img src="images/year4/darwinClass.jpg">
</div>
<div id="year4googlemaps">
<a href="https://goo.gl/maps/2fERWko2FB22">
<img src="images/year4/GoogleMaps.jpg">
</a>
</div>
<div id="year4booknow">
<a class="button" href="https://calendar.google.com/calendar/selfsched?sstoken=UUswYmU5UVpCMUd0fGRlZmF1bHR8Y2RkNzNmYTJjOTViMDczMzk4MWM4NmEwYWVmNTMzMTU" onclick="goTo('year4_booking')">Book now!</a>
</div>
<div id="year4phototext">
<p>Photos!</p>
</div>
<ul class="receptionSlider">
<li class="slide">
<img src="images/year4/design1.jpg"/>
</li>
<li class="slide">
<img src="images/year4/design2.jpg"/>
</li>
<li class="slide">
<img src="images/year4/design3.jpg"/>
</li>
<li class="slide">
<img src="images/year4/design4.jpg"/>
</li>
<li class="slide">
<img src="images/year4/design5.jpg"/>
</li>
<li class="slide">
<img src="images/year4/recipe1.jpg"/>
</li>
<li class="slide">
<img src="images/year4/recipe2.jpg"/>
</li>
<li class="slide">
<img src="images/year4/recipe3.jpg"/>
</li>
<li class="slide">
<img src="images/year4/recipe4.jpg"/>
</li>
<li class="slide">
<img src="images/year4/recipe5.jpg"/>
</li>
<li class="slide">
<img src="images/year4/recipe6.jpg"/>
</li>
<li class="slide">
<img src="images/year4/recipe7.jpg"/>
</li>
<li class="slide">
<img src="images/year4/recipe8.jpg"/>
</li>
</ul>
</div>
</section>
<div id="year5">
<section name="year5">
<h1>Year 5</h1>
<img src="images/year5/class.jpg">
<p>We are MacArthur Class and we have set up a mini-enterprise specialising in South American food.</p>
<p>Our business, Exquisite Foreign Foods Ltd., has created a unique product: a beautiful <b>book</b> that combines travel writing with fantastic recipes that will challenge your cooking skills and introduce you to new tastes.</p>
<p>We are specialists in South American culture and our book will transport you to this fascinating continent through their delicious cuisine.</p>
<div class="clear">
<div class="half">
<img src="images/year5/book.jpg">
</div>
<div class="half" style="padding-left: 1rem;">
<h1>
Where to buy our recipe book
</h1>
<p>
<a href="http://buenosairescafe.co.uk/blackheath-restaurant">Blackheath Buenos Aires Cafe</a>
</p>
<h1>
What can you find in the recipe book?
</h1>
<p>
South American recipes by year 5 Invicta Primary School
</p>
</div>
</div>
<p>Our business partners are Buenos Aires Cafe, the destination for Argentinian food in Greenwich. As well as endorsing our product, Buenos Aires Cafe are selling it at their cafe in Greenwich and restaurant in Blackheath. Why not enjoy the delights of professionally prepared Argentinian cuisine before buying our book and becoming the chef yourself?</p>
<p>Watch Jessica’s cookery class to discover one of our South American favourite recipes.</p>
<p>Why not take our South American food quiz to learn more about the ingredients and food culture in South America?</p>
<p>Click the buttons below to find out more!</p>
<a class="clickable" onclick="goTo('video')">
<img src="images/year5/play-button-icon.png" width="23%">
</a>
<a class="clickable" onclick="goTo('review_page')">
<img src="images/year5/3618697.png" width="23%">
</a>
<a class="clickable" onclick="goTo('quiz_page')">
<img src="images/year5/quiz.jpg" width="23%">
</a>
<a class="clickable" onclick="goTo('contact_page')">
<img src="images/year5/contact.jpg" width="23%">
</a>
<!-- <p>Welcome to the Invicta app we have worked alot on the app with the other people that helped us. We have done coding to sort out the app. With in our app we have put together a recipe book that we will be selling at Buenos Aires Cafe.</p> -->
<img src="images/year5/YOR_9995.jpg" width="100%">
<p>You should go there because they have nice food and a nice place. Click here for <a href="http://buenosairescafe.co.uk/reservation">Buenos Aires booking</a></p>
<img src="images/year5/logo-banner.png">
<img src="images/year5/reservation-home-image.jpg" width="100%">
<p>
This is a picture of the Buenos Aires Cafe. The Buenos Aires cafe has lovely food and a wonderful interior. Our recipe book is selling there. You can make all types of food using our book, for example delicious chicken and lamb.
</p>
</section>
<section name="video">
<h1>
Video page
</h1>
<iframe width="560" height="315" src="https://www.youtube.com/embed/IljG8GiexJ8" frameborder="0" allowfullscreen></iframe>
<a onclick="goTo('year5')" class="button">Back</a>
</section>
<section name="quiz_page">
<div class="quizz-container" data-width="100%" data-height="auto" data-quiz="187318"></div>
<script src="https://dcc4iyjchzom0.cloudfront.net/widget/loader.js" async></script>
<a onclick="goTo('year5')" class="button">Back</a>
</section>
<section name="review_page" >
<h1>The reviews</h1>
<a onclick="goTo('year5')" class="button">Back</a>
<div class="review">
<img src="images/year5/customer.png">
<h2> 5 stars!!!</h2>
<p>
This book is amazing!!!!I've learnt loads I highly recommend it.
</p>
</div>
<!-- <div class="review">
<img src="https://cdn1.iconfinder.com/data/icons/social-messaging-productivity-1-1/128/gender-male2-512.png" width="330px">
<h2>Bruce Willison</h2>
<p>
I found cooking really difficult, it was so challenging that I would cry hard. But thanks to this fantastic new book that I’ve found, all my worries are gone.
</p>
</div>
<div class="review">
<img src="https://cdn1.iconfinder.com/data/icons/social-messaging-productivity-1-1/128/gender-male2-512.png" width="330px">
<h2>James Blond</h2>
<p>
I used to be embarrassed of my ability to cook that I used to keep it secret. I was walking home one day when I stumbled upon a small bookstore. Within this store I spied out what I can only describe as the best literary experience I’ve ever had the pleasure of reading. That was this book. Now I can cook at least 7 dishes and they’re even good enough for the Queen.
</p>
</div> -->
</section>
<section name="contact_page">
<h1>Contact page</h1>
<a onclick="goTo('year5')" class="button">Back</a>
<h2>Invicta Primary School</h2>
<p>Invicta Road</p>
<p>London</p>
<p>SE3 7HE</p>
<!-- <p>Receptionist: Amey Gill</p> -->
<p>tel: 020 8858 3831</p>
<p>fax: 020 8293 3620</p>
<p>Email: admin@invictaprimary.co.uk</p>
<div id="year4googlemaps">
<a href="https://goo.gl/maps/2fERWko2FB22">
<img src="images/year4/GoogleMaps.jpg">
</a>
</div>
<!-- <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d79533.84083611837!2d0.019648691440328214!3d51.46857461990834!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47d8a83662969505%3A0xe530431832ec9d36!2sInvicta+Primary+School!5e0!3m2!1sen!2suk!4v1457611378443" width="150" height="400" frameborder="0" style="border:0" allowfullscreen></iframe> -->
</section>
</div>
</article>
</body>
</html>