-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage2.html
1609 lines (1557 loc) · 57.2 KB
/
page2.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>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=0.65">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<title>Learning Swedish - Page 2</title>
<link rel="stylesheet" type="text/css" href="css/swedish.css">
<script src = "js/quiz.js"></script>
<link rel="icon" href="imgs/swfl.png">
</head>
<body>
<!--start-->
<header>
<h1>Learning Swedish - Page 2</h1>
<nav>
<ul class="main-navigation">
<li><a href="index.html" class = "active">Home</a></li>
<li><a href="Games.html">Games</a></li>
<li><a href="Quiz.html">Quiz</a></li>
<li><a href="#">Links</a>
<ul>
<li><a href="#">lessons</a>
<ul>
<li><a href="page1.html">1-13</a></li>
<li><a href="page2.html">14-20</a></li>
<li><a href="page3.html">21- ...</a></li>
<li><a href="#">... - ... </a></li>
</ul>
</li>
<li><a href="#">Dialogue</a>
<ul>
<li><a href="DialoguesPage1.html">1 - ...</a></li>
<li><a href="#">... - ...</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</nav>
</header>
<a href="page1.html" class="previous">« Prev</a>
<a href="page3.html" class="next">Next »</a>
<p>To avoid to having to long pages with lessons for you keep scrolling and scrolling, I have divided them in different pages. There are still some lessons we have to go through before continuing the dialogues.</p>
<h2><a id="5-rules">Lesson 14: En eller Ett + The 5 rules</a></h2>
<!--Start Lesson 14 En eller Ett -->
<p>I mentioned in lesson 7 that there are 5 rules.
For example a lamp will be <b>en lampa</b>. the lamp will be <b>lampan</b> both of the is what they call singular, the 1st one is <b>"Öbestämd" and the 2nd is "Bestämd" form.</b> We have the same forms if there are more than 1 or so to say plural. For example two lamps will be<b> två lampor</b> and the lamps will be <b>lamporna.</b></p>
<p>Confusing? Do not worry, I will show you.</p>
<br>
<table>
<tr>
<th style="background-color: #00c3ff"> <code>En or Ett</code></th>
<th>Group</th>
<th style="background-color: #00FFFF">Singular Öbestämd</th>
<th style="background-color: #00FFFF">Singular Bestämd</th>
<th style="background-color: #00FFFF">Plural Öbestämd</th>
<th style="background-color: #00FFFF">Plural Bestämd</th>
<th>English</th>
<th>Audio</th>
</tr>
<tr>
<td>En</td>
<td>1: words end with <b>a</b></td>
<td>En lamp<b>a</b></td>
<td>Lamp<b>an</b></td>
<td>lamp<b>or</b></td>
<td>lamp<b>orna</b></td>
<td>A lamp, The lamp, Lamps, The lamps</td>
<td><audio src="audio/en_lampa.mp3" controls> </audio></td>
</tr>
<tr>
<td>En</td>
<td>2: Short words, and words ending with: <b>e/el/en/er/on/ing and ning</b></td>
<td>En bil</td>
<td>bil<b>en</b></td>
<td>bil<b>ar</b></td>
<td>bil<b>arna</b></td>
<td>A car, The car, Cars, The cars</td>
<td><audio src="audio/en_car.mp3" controls> </audio></td>
</tr>
<tr>
<td>En</td>
<td>3: words used from <b>other countries</b></td>
<td>En student</td>
<td>Student<b>en</b></td>
<td>Student<b>er</b></td>
<td>Student<b>erna</b></td>
<td>A student, The student, Students, The students</td>
<td><audio src="audio/en_student.mp3" controls> </audio></td>
</tr>
<tr>
<td>Ett</td>
<td>4: words end with <b>e</b> or other vowels</td>
<td>Ett äpple</td>
<td>Äppl<b>et</b></td>
<td>Äppl<b>en</b></td>
<td>Äppl<b>ena</b></td>
<td>An apple, The apple, Apples, The apples</td>
<td><audio src="audio/ett_äpple.mp3" controls> </audio></td>
</tr>
<tr>
<td>Ett</td>
<td>5: other short words that do not end with a vowels</td>
<td>Ett hus</td>
<td>Hus<b>et</b></td>
<td>Hus</td>
<td>Hus<b>en</b></td>
<td>A house, The house, Houses, The houses</td>
<td><audio src="audio/ett_hus.mp3" controls> </audio></td>
</tr>
</table>
<p>You see that in rule 5 that the singular and plural öbestämd stay the same. The words end in <b>A and an</b> changes to <b>Or and Orna</b>, while the short words with in group 2 changes to <b>Ar and arna, etc.</b></p>
<p>Go to the next lesson for more samples and practising. We will have soon another quiz to test your learning skills.</p>
<!--End Lesson 14 En eller Ett -->
<h2><a id="en-ett">Lesson 15: More en - ett words per Rule group</a></h2>
<!--Start Lesson 15 More en, ett words per Rule group -->
<!--
<br>
<a href ="http://www.floormatcompany.com/images_item/Flooring/Wellington/Wellington_Action_Shot_4B_Large.jpg"></i></a>
<br>
<a href = "https://www.absolutemetalfabrications.com.au/wp-content/uploads/2020/03/Floating-Staircase-Adelaide-800x1067.jpg"></i></a>
<br>
<br>
<a href = "https://i.pinimg.com/236x/3f/47/7a/3f477a106a9bd1ee7665a7029b697749.jpg"></i></a>
<br>
<br>
<a href = "https://www.ikea.com/se/sv/images/products/brathult-3-seat-sofa-vissle-red-orange__0524916_PE644642_S5.JPG?f=g"></i></a>
<br>
<a href = "https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcSwJ5dohiu48Kl9tGykkg9fugbzLzrFCStlAUCOdPPwKuA0uxXCp4E0xxVNl_O7DFKup776pbl1&usqp=CAc"></i></a>
<br>
<a href = "https://www.olssongerthel.se/sites/all/files/styles/product_image_zoom/public/produktvisning/main_image/dbkd-cloudy-kruka-dusty-pink.png?itok=tzYKSXRP"></i></a>
<br>
<a href = "https://raja.scene7.com/is/image/Raja/products/lador-av-tvawell-langder-mellan-200-485-mm-250-x-b-200-x-h-150-mm_CAD01NO.jpg?image=M_CAD13A_R_S_015_F$default$&hei=300&wid=300"></i></a>
<br>
<a href = "https://upload.wikimedia.org/wikipedia/commons/3/3a/HallofColumns.jpg"></i></a>
<br>
<a href = "https://www.iberdrola.com/wcorp/gc/prod/en_US/comunicacion/elevator_pitch_mult_1_res/elevator_746x419.jpg"></i></a>
<br>
<a href = "https://maaho.com/1715-large_default/nature-linneduk.jpg"></i></a>
<br>
<a href = "http://theloamwolf.com/wp-content/uploads/2018/08/2018.-POLYGON.-GLENCOE.-DAY-1-Thumb.jpg"></i></a>
<br>
<a href = "https://images.staticjw.com/kon/5973/bank_konkurs.jpg"></i></a>
<br>
<a href = "http://ii.worldmarket.com/fcgi-bin/iipsrv.fcgi?FIF=/images/worldmarket/source/29365_XXX_v1.tif&wid=2000&cvt=jpeg"></i></a>
<br>
<a href = "https://abstinencedu.com/images/kak_krasivo_slozhit_salfetki_dlya_prazdnichnogo_stola_raznoobrazie_variantov_[master-klassi]_15.jpg"></i></a>
<br>
<a href = "https://upload.wikimedia.org/wikipedia/commons/thumb/e/e0/Dishwasher_with_dishes.JPG/1200px-Dishwasher_with_dishes.JPG"></i></a>
<br>
<a href = "https://th.bing.com/th/id/OIP.r9VMXuI_Zx-JmXtgiDB6-AHaHa?pid=Api&rs=1"></i></a>
<br>
<a href = "https://www.ukbathrooms.com/images/1200/1200/79938.jpg"></i></a>
<br>
<a href = "https://sassier.se/2942-large_default/student-dekorationer-2020-ballonger-vimplar-.jpg"></i></a>
<br>
<a href = "http://www.furobyggservice.se/wp-content/uploads/2015/08/Altan_insynsskydd.jpg"></i></a>
<br>
<a href = "https://img.pixers.pics/pho_wat(s3:700/FO/40/66/51/04/700_FO40665104_ebff462b629a4e2132a1333c34efe310.jpg,700,467,cms:2018/10/5bd1b6b8d04b8_220x50-watermark.png,over,480,417,jpg)/fototapeter-balkon-von-romeo-und-julia.jpg.jpg"></i></a>
<br>
<a href = "https://www.ledfe.se/files/parts/vb_hsq/thumbnail"></i></a>
<br>
<a href = "https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcSBvvMvo1TkXnN5GjeKFLBN-8TdYmXi_CpD4JMWHzqgAWT26IXmBnDb-euFs-BLzYi7JbcYcqxR&usqp=CAc"></i></a>
<br>
<a href = "https://onehdwallpaper.com/wp-content/uploads/2016/05/Red-Apple-Fruit-HD-Wallpaper.jpg"></i></a>
<br>
<a href = "https://images.tctc.se/8gf04q8ap3bnr37ooz8fu8313xbo91v0_292_292.jpg"></i></a>
<br>
<a href = "https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcRrsYaSUjG-OYdHz4lXX1Wnkm8yAkHgCtn4_1MrGTUKiE9gnhCw&usqp=CAU"></i></a>
<br>
<a href = "https://singularityhub.com/wp-content/uploads/2018/11/vector-human-ear-photorealistic-illustration_shutterstock_516060400-1068x601.jpg"></i></a>
<br>
<a href = "https://karrierestart.no/UserFiles/content/karriere/DivYrker1250.jpg"></i></a>
<br>
<a href = "https://i.pinimg.com/originals/cb/95/76/cb95767dd709332bb3e5eb914cdc5db3.jpg"></i></a>
<br>
<a href = "https://th.bing.com/th/id/OIP.1I4_xgUb8fa7OJSOc3PfbwHaHD?pid=Api&rs=1"></i></a>
<br>
<a href = "https://static.mio.host/images/products/44655.jpg?width=903&height=541&crop=false"></i></a>
<br>
<a href = "https://www.moneycrashers.com/wp-content/uploads/2010/11/empty-room-wood-floor-1068x713.jpg"></i></a>
<br>
<a href = "https://www.ikea.com/images/a-kitchen-with-colour-coordinated-storage-lots-of-worktops-a-28d79b5280ad5de8c3b95973b1cbfb0d.jpg?f=xxxl"></i></a>
<br>
<a href = "http://media.scraphacker.com/2011/09/P1200047-1024x780.jpg"></i></a>
<br>
<a href = "https://assets.ellosgroup.com/i/ellos/b?$eg$&$emr$&$ep$&$ed$&n=ell_1573586_Fs&mw=500&rw=500"></i></a>
<br>
<a href = "https://thereadywriters.com/wp-content/uploads/2020/03/supporting-statement.jpg"></i></a>
<br>
<a href = "https://en.islcollective.com/preview/201911/f/places-in-town-board-game-boardgames-clt-communicative-language-teaching-res_120015_1.jpg"></i></a>
<br>
-->
<table>
<tr>
<th style="background-color: #00c3ff"> <code>Group 1</code></th>
<th style="background-color: #00FFFF">Singular Öbestämd</th>
<th style="background-color: #00FFFF">Singular Bestämd</th>
<th style="background-color: #00FFFF">Plural Öbestämd</th>
<th style="background-color: #00FFFF">Plural Bestämd</th>
<th>English</th>
<th>Audio</th>
</tr>
<tr>
<td><img src="imgs/mattan.jpg" alt="floor mat" /></td>
<td>En matt<b>a</b></td>
<td>Matt<b>an</b></td>
<td>Matt<b>or</b></td>
<td>Matt<b>orna</b></td>
<td>A mat, The mat , Mats, The mats</td>
<td><audio src="audio/matta.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/tavla.jpg" alt="picture" /></td>
<td>En tavl<b>a</b></td>
<td>Tavl<b>an</b></td>
<td>Tavl<b>or</b></td>
<td>Tavl<b>orna</b></td>
<td>A painting, The painting , Paintings, The paintings</td>
<td><audio src="audio/tavla.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/stairs.jpg" alt="trappa" /></td>
<td>En trapp<b>a</b></td>
<td>Trapp<b>an</b></td>
<td>Trapp<b>or</b></td>
<td>Trapp<b>orna</b></td>
<td>A stair, The stair , Stairs, The stairs</td>
<td><audio src="audio/trap.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/soffa.jpg" alt="sofa" /></td>
<td>En soff<b>a</b></td>
<td>Soff<b>an</b></td>
<td>Soff<b>or</b></td>
<td>Soff<b>orna</b></td>
<td>A sofa, The sofa , Sofas, The sofas</td>
<td><audio src="audio/sofa.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/hylla.jpg" alt="shelf" /></td>
<td>En hyll<b>a</b></td>
<td>Hyll<b>an</b></td>
<td>Hyll<b>or</b></td>
<td>Hyll<b>orna</b></td>
<td>A shelf, The shelf , Shelves, The Shelves</td>
<td><audio src="audio/shelf.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/krukka.png" alt="pot" /></td>
<td>En kruk<b>a</b></td>
<td>Kruk<b>an</b></td>
<td>Kruk<b>or</b></td>
<td>Kruk<b>orna</b></td>
<td>A pot, The pot , Pots, The pots</td>
<td><audio src="audio/pot.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/box.jpg" alt="box" /></td>
<td>En låd<b>a</b></td>
<td>Låd<b>an</b></td>
<td>Låd<b>or</b></td>
<td>Låd<b>orna</b></td>
<td>A box, The box , Boxes, The boxes</td>
<td><audio src="audio/box.mp3" controls> </audio></td>
</tr>
</table>
<table>
<tr>
<th style="background-color: #00c3ff"> <code>Group 2</code></th>
<th style="background-color: #00FFFF">Singular Öbestämd</th>
<th style="background-color: #00FFFF">Singular Bestämd</th>
<th style="background-color: #00FFFF">Plural Öbestämd</th>
<th style="background-color: #00FFFF">Plural Bestämd</th>
<th>English</th>
<th>Audio</th>
</tr>
<tr>
<td><img src="imgs/hall.jpg" alt="gang" /></td>
<td>En hall</td>
<td>Hall<b>en</b></td>
<td>Hall<b>ar</b></td>
<td>Hall<b>arna</b></td>
<td>A hall, The hall , Halls, The halls</td>
<td><audio src="audio/hall.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/lift.jpg" alt="elevator" /></td>
<td>En hiss</td>
<td>Hiss<b>en</b></td>
<td>Hiss<b>ar</b></td>
<td>Hiss<b>arna</b></td>
<td>An elevator, The elevator, Elevators, The elevators</td>
<td><audio src="audio/elevator.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/duk.jpg" alt="table_cloth" /></td>
<td>En duk</td>
<td>Duk<b>en</b></td>
<td>Duk<b>ar</b></td>
<td>Duk<b>arna</b></td>
<td>A tablecloth, The tablecloth, Tablecloths, The tablecloths</td>
<td><audio src="audio/duk.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/bike.jpg" alt="bike" /></td>
<td>En cykel</td>
<td>Cykel<b>n</b></td>
<td>Cyk<b>lar</b></td>
<td>Cyk<b>larna</b></td>
<td>A bike, The bike, Bikes, The bikes</td>
<td><audio src="audio/bike.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/bank.jpg" alt="bank building" /></td>
<td>En bank</td>
<td>Bank<b>en</b></td>
<td>Bank<b>ar</b></td>
<td>Bank<b>arna</b></td>
<td>A bank, The bank, Banks, The banks</td>
<td><audio src="audio/banken.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/newspaper.jpg" alt="newspaper" /></td>
<td>En tidning</td>
<td>Tidning<b>en</b></td>
<td>Tidning<b>ar</b></td>
<td>Tidning<b>arna</b></td>
<td>A newspaper, The newspaper, Newspapers, The newspapers</td>
<td><audio src="audio/newspaper.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/chair.jpg" alt="easy_chair" /></td>
<td>En stol</td>
<td>Stol<b>en</b></td>
<td>Stol<b>ar</b></td>
<td>Stol<b>arna</b></td>
<td>A chair, The chair, Chairs, The chairs</td>
<td><audio src="audio/chair.mp3" controls> </audio></td>
</tr>
</table>
<p>You see in group 2 the word <b>Cykel</b> that there is no <b>e</b> between the l and n. I have no clear explanation for this, just that it is something you have the learn, rather than trying to find the logic. Like in every language. Along the way in learning Swedish you will find more examples.</p>
<table>
<tr>
<th style="background-color: #00c3ff"> <code>Group 3</code></th>
<th style="background-color: #00FFFF">Singular Öbestämd</th>
<th style="background-color: #00FFFF">Singular Bestämd</th>
<th style="background-color: #00FFFF">Plural Öbestämd</th>
<th style="background-color: #00FFFF">Plural Bestämd</th>
<th>English</th>
<th>Audio</th>
</tr>
<tr>
<td><img src="imgs/servet.jpg" alt="servetjes" /></td>
<td>En servett</td>
<td>Servett<b>en</b></td>
<td>Servett<b>er</b></td>
<td>Servett<b>erna</b></td>
<td>A servet, The servet, Servets, The servets</td>
<td><audio src="audio/servet.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/dishwasher.jpg" alt="dishwasher" /></td>
<td>En diskmaskin</td>
<td>Diskmaskin<b>en</b></td>
<td>Diskmaskin<b>er</b></td>
<td>Diskmaskin<b>erna</b></td>
<td>A dishwasher, The dishwasher, Dishwashers, The dishwashers</td>
<td><audio src="audio/dishwasher.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/rullgardin.jpg" alt="rol curtain" /></td>
<td>En rullgardin</td>
<td>Rullgardin<b>en</b></td>
<td>Rullgardin<b>er</b></td>
<td>Rullgardin<b>erna</b></td>
<td>A blind, The blind, Blinds, The blinds</td>
<td><audio src="audio/rullgardin.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/wc.jpg" alt="toilet" /></td>
<td>En toalett</td>
<td>Toalett<b>en</b></td>
<td>Toalett<b>er</b></td>
<td>Toalett<b>erna</b></td>
<td>A toilet, The toilet, Toilets, The toilets</td>
<td><audio src="audio/toilets.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/student.jpg" alt="school_student" /></td>
<td>En student</td>
<td>Student<b>en</b></td>
<td>Student<b>er</b></td>
<td>Student<b>erna</b></td>
<td>A student, The student, Students, The students</td>
<td><audio src="audio/student.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/balkon.PNG" alt="balkony" /></td>
<td>En balkong</td>
<td>Balkong<b>en</b></td>
<td>Balkong<b>er</b></td>
<td>Balkong<b>erna</b></td>
<td>A balcony, The balcony, Balconies, The balconies</td>
<td><audio src="audio/balkonys.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/terras.jpg" alt="terras" /></td>
<td>En altan</td>
<td>Altan<b>en</b></td>
<td>Altan<b>er</b></td>
<td>Altan<b>erna</b></td>
<td>A terrace, The terrace, Terraces, The terraces</td>
<td><audio src="audio/terras.mp3" controls> </audio></td>
</tr>
</table>
<table>
<tr>
<th style="background-color: #00c3ff"> <code>Group 4</code></th>
<th style="background-color: #00FFFF">Singular Öbestämd</th>
<th style="background-color: #00FFFF">Singular Bestämd</th>
<th style="background-color: #00FFFF">Plural Öbestämd</th>
<th style="background-color: #00FFFF">Plural Bestämd</th>
<th>English</th>
<th>Audio</th>
</tr>
<tr>
<td><img src="imgs/fence.jpg" alt="fence" /></td>
<td>Ett räcke</td>
<td>Räcke<b>t</b></td>
<td>Räck<b>en</b></td>
<td>Räck<b>ena</b></td>
<td>A railing, The railing, Railings, The railings</td>
<td><audio src="audio/fence.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/duvet.jpg" alt="duvet" /></td>
<td>Ett täcke</td>
<td>Täcke<b>t</b></td>
<td>Täck<b>en</b></td>
<td>Täck<b>ena</b></td>
<td>A duvet, The duvet, Duvets, The duvets</td>
<td><audio src="audio/duvet.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/apple.jpg" alt="apple" /></td>
<td>Ett äpple</td>
<td>Äpple<b>t</b></td>
<td>Äppl<b>en</b></td>
<td>Äppl<b>ena</b></td>
<td>An apple, The apple, Apples, The apples</td>
<td><audio src="audio/apple.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/stamp.jpg" alt="stamp" /></td>
<td>Ett frimärke</td>
<td>Frimärke<b>t</b></td>
<td>Frimärk<b>en</b></td>
<td>Frimärk<b>ena</b></td>
<td>A stamp, The stamp, Stamp, The stamps</td>
<td><audio src="audio/stamp.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/profession.jpg" alt="profession" /></td>
<td>Ett yrke</td>
<td>Yrke<b>t</b></td>
<td>Yrk<b>en</b></td>
<td>Yrk<b>ena</b></td>
<td>A profession, The profession, Professions, The professions</td>
<td><audio src="audio/profession.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/job.jpg" alt="job" /></td>
<td>Ett arbete</td>
<td>Arbete<b>t</b></td>
<td>Arbet<b>en</b></td>
<td>Arbet<b>ena</b></td>
<td>A job, The job, Jobs, The jobs</td>
<td><audio src="audio/job.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/places.jpg" alt="place" /></td>
<td>Ett ställe</td>
<td>Ställe<b>t</b></td>
<td>Ställ<b>en</b></td>
<td>Ställ<b>ena</b></td>
<td>A place, The place, Places, The places</td>
<td><audio src="audio/place.mp3" controls> </audio></td>
</tr>
</table>
<table>
<tr>
<th style="background-color: #00c3ff"> <code>Group 5</code></th>
<th style="background-color: #00FFFF">Singular Öbestämd</th>
<th style="background-color: #00FFFF">Singular Bestämd</th>
<th style="background-color: #00FFFF">Plural Öbestämd</th>
<th style="background-color: #00FFFF">Plural Bestämd</th>
<th>English</th>
<th>Audio</th>
</tr>
<tr>
<td><img src="imgs/house.jpg" alt="house" /></td>
<td>Ett hus</td>
<td>Hus<b>et</b></td>
<td>Hus</td>
<td>Hus<b>en</b></td>
<td>A house, The house, Houses, The houses</td>
<td><audio src="audio/houses.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/letter.jpg" alt="letter" /></td>
<td>Ett brev</td>
<td>Brev<b>et</b></td>
<td>Brev</td>
<td>Brev<b>en</b></td>
<td>A letter, The letter, Letters, The letters</td>
<td><audio src="audio/letter.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/table.jpg" alt="coffee_table" /></td>
<td>Ett bord</td>
<td>Bord<b>et</b></td>
<td>Bord</td>
<td>Bord<b>en</b></td>
<td>A table, The table, Tables, The tables</td>
<td><audio src="audio/tables.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/floor.jpg" alt="floor" /></td>
<td>Ett golv</td>
<td>Golv<b>et</b></td>
<td>Golv</td>
<td>Golv<b>en</b></td>
<td>A floor, The floor, Floors, The floors</td>
<td><audio src="audio/floor.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/kitchen.JPG" alt="kitchen" /></td>
<td>Ett kök</td>
<td>Kök<b>et</b></td>
<td>Kök</td>
<td>Kök<b>en</b></td>
<td>A kitchen, The kitchen, Kitchens, The kitchens</td>
<td><audio src="audio/kitchens.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/bath.jpg" alt="bath" /></td>
<td>Ett badkar</td>
<td>Badkar<b>t</b></td>
<td>Badkar</td>
<td>Badkar<b>en</b></td>
<td>A bathtube, The bathtube, Bathtubes, The bathtubes</td>
<td><audio src="audio/bath.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/child.jpg" alt="child" /></td>
<td>Ett barn</td>
<td>Barn<b>et</b></td>
<td>Barn</td>
<td>Barn<b>en</b></td>
<td>A child, The child, Childeren, The Childeren</td>
<td><audio src="audio/child.mp3" controls> </audio></td>
</tr>
</table>
<p>In the next lesson I will show more samples, but that are words with an irregular plural and some exceptions. As is group 1 you see that all words with a starts with <b>en</b> but there are words start with <b>ett</b> For example <b>ett öga</b>.</p>
<!--End Lesson 15 More en, ett words per Rule group -->
<h2><a id="Irregular-Plural">Lesson 16: Irregular Plural</a></h2>
<!--Start Lesson 16 Irregular Plural -->
<!--
<br>
<a href = "https://cdn.pixabay.com/photo/2018/02/18/21/21/book-3163563_1280.jpg"></i></a>
<br>
<a href = "https://byashowofhands.com/wp-content/uploads/2018/10/18126RU-ByAShowOfHands_05.png"></i></a>
<br>
<a href = "https://www.arbetsbyxor.com/media/catalog/product/cache/830f3fedec5d775274d3c4d2ddbfa0f3/2/3/2310-0000-blaklader-skyddssko-s3-brun3800-onenewfront.jpg"></i></a>
<br>
<a href = "https://lh3.googleusercontent.com/proxy/BcyrdIlONR6QNbELcTairsLfGWYqp6QhZBCWqSz6EPgaeF1DLyiznFYqyrSFDRcCYbni30-HN6267-Hv4Qs-yUIbi8b9SaU"></i></a>
<br>
<a href = "https://static.vecteezy.com/system/resources/previews/000/522/068/non_2x/a-farmer-below-the-empty-signage-vector.jpg"></i></a>
<br>
<a href = "https://feministbiblioteket.se/wp-content/uploads/2017/09/langkawi-1.jpg"></i></a>
<br>
<a href = "https://www.ripleybelieves.com/img/world-facts-2018/is-australia-country.jpg"></i></a>
<br>
<a href = "https://www.bestprice.ink/images/userfiles/images/Brother%20imprimante%20histoire%20logo.png"></i></a>
<br>
<a href = "https://1.bp.blogspot.com/-78D4PjPN1-0/T1tJIQDFB3I/AAAAAAAAAKQ/HErNRypUoYc/s1600/f%C3%B6.jpg"></i></a>
<br>
-->
<table>
<tr>
<th style="background-color: #00c3ff"> <code>Irregular and exceptions</code></th>
<th style="background-color: #00FFFF">Singular Öbestämd</th>
<th style="background-color: #00FFFF">Singular Bestämd</th>
<th style="background-color: #00FFFF">Plural Öbestämd</th>
<th style="background-color: #00FFFF">Plural Bestämd</th>
<th>English</th>
<th>Audio</th>
</tr>
<tr>
<td><img src="imgs/book.jpg" alt="book" /></td>
<td>En bok</td>
<td>Bok<b>en</b></td>
<td>Böck<b>er</b></td>
<td>Böck<b>erna</b></td>
<td>A book, The book, Books, The books</td>
<td><audio src="audio/en_bok.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/farmer.jpg" alt="farmer" /></td>
<td>En bonde</td>
<td>Bond<b>en</b></td>
<td>Bönd<b>er</b></td>
<td>Bönd<b>erna</b></td>
<td>A farmer, The farmer, Farmers, The farmers</td>
<td><audio src="audio/farmer.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/brothers.png" alt="brothers" /></td>
<td>En bror</td>
<td>Brod<b>ern</b></td>
<td>Bröd<b>er</b></td>
<td>Bröd<b>erna</b></td>
<td>A brother, The brother, Brothers, The brothers</td>
<td><audio src="audio/brothers.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/feet.jpg" alt="feet" /></td>
<td>En fot</td>
<td>Fot<b>en</b></td>
<td>Fött<b>er</b></td>
<td>Fött<b>erna</b></td>
<td>A foot, The foot, Feet, The feet</td>
<td><audio src="audio/feet.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/hand.png" alt="human_hand" /></td>
<td>En hand</td>
<td>Hand<b>en</b></td>
<td>Händ<b>er</b></td>
<td>Händ<b>erna</b></td>
<td>A hand, The hand, Hands, The hands</td>
<td><audio src="audio/hand.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/country.jpg" alt="country" /></td>
<td>Ett land</td>
<td>Land<b>et</b></td>
<td>Länd<b>er</b></td>
<td>Länd<b>erna</b></td>
<td>A country, The country, Countries, The countries</td>
<td><audio src="audio/ett_land.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/shoes.jpg" alt="shoes" /></td>
<td>En sko</td>
<td>Sko<b>n</b></td>
<td>Sko<b>r</b></td>
<td>Sko<b>rna</b></td>
<td>A shoe, The shoe, Shoes, The shoes</td>
<td><audio src="audio/shoes.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/city.jpg" alt="city" /></td>
<td>En stad</td>
<td>Stad<b>en</b></td>
<td>Städ<b>er</b></td>
<td>Städ<b>erna</b></td>
<td>A city, The city, Cities, The cities</td>
<td><audio src="audio/cities.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/beach.jpg" alt="beach" /></td>
<td>En strand</td>
<td>Strand<b>en</b></td>
<td>Stränd<b>er</b></td>
<td>Stränd<b>erna</b></td>
<td>A beach, The beach, Beaches, The beaches</td>
<td><audio src="audio/beach.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/eye.jpg" alt="eye" /></td>
<td>Ett öga</td>
<td>Öga<b>t</b></td>
<td>Ög<b>on</b></td>
<td>Ög<b>onen</b></td>
<td>An eye, The eye, Eyes, The eyes</td>
<td><audio src="audio/eye.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/ear.JPG" alt="ear" /></td>
<td>Ett öra</td>
<td>Öra<b>t</b></td>
<td>Ör<b>on</b></td>
<td>Ör<b>onen</b></td>
<td>An ear, The ear, Ears, The ears</td>
<td><audio src="audio/ear.mp3" controls> </audio></td>
</tr>
</table>
<!--End Lesson 16 Irregular Plural -->
<!--Start Quiz - Part 2 -->
<h2>Quiz Time - Part 2</h2>
<p>It is time for a quiz. Go the quiz tab and look up the <b>"Swedish Quiz - Lessons 9 - 16"</b>
Good Luck!</p>
<!--End Quiz - Part 2 -->
<h2><a id="Motsatser">Lesson 17: Opposites - Motsatser</a></h2>
<!--Start Lesson 17 Opposites - Motsatser -->
<!--
<br>
<a href = "https://thumbs.dreamstime.com/b/cartoon-cute-white-cat-boring-lay-down-floor-cartoon-cute-white-cat-boring-165886051.jpg"></i></a>
<br>
<a href = "https://jooinn.com/images/round-1.jpg"></i></a>
<br>
<a href = "https://i1.wp.com/www.magasinetparagraf.se/wp-content/uploads/2020/03/2019-05-27-2-e1583654783925.jpg?fit=620%2C341&ssl=1&w=640"></i></a>
<br>
<a href = "https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcRPAYYrn_zCozua5odjyTX69IDicgEZhGlcDb2wT7-Y_NyIPF56&usqp=CAU"></i></a>
<br>
<a href = "https://i.dietdoctor.com/se/wp-content/2013/01/fatcow.jpg?auto=compress%2Cformat&w=500&h=574&fit=crop"></i></a>
<br>
<a href = "https://adiahealth.com/wp-content/uploads/what-is-a-healthy-lifestyle.png"></i></a>
<br>
<a href = "https://www.cedars-sinai.org/blog/when-to-keep-a-sick-kid-home-from-school.html"></i></a>
<br>
<a href = "https://image.shutterstock.com/image-photo/businessman-standing-dreaming-about-strong-260nw-1094388167.jpg"></i></a>
<br>
<a href = "https://thumbs.dreamstime.com/b/words-strong-weak-flashcard-cartoon-animal-characters-opposite-adjectives-explanation-card-flat-vector-illustration-179247226.jpg"></i></a>
<br>
<a href = "https://image.shutterstock.com/image-vector/illustration-isolated-cute-birds-opposite-260nw-222403354.jpg"></i></a>
<br>
<a href = "https://www.123rf.com/photo_44985016_stock-vector-stressed-woman-cartoon.html"></i></a>
<br>
<a href = "https://st4.depositphotos.com/19527452/23192/v/1600/depositphotos_231928472-stock-illustration-vector-antonyms-opposites-clean-dirty.jpg"></i></a>
<br>
<a href = "http://clipart-library.com/poor-cliparts.html"></i></a>
<br>
<a href = "https://www.villeroy-boch.se/shop/media/catalog/product/cache/22/image/560x/9df78eab33525d08d6e5fb8d27136e95/1/1/1173021023/villeroy-boch-Drop-large-vase-Midnight-Sky-30.jpg"></i></a>
<br>
<a href = "https://lirp-cdn.multiscreensite.com/3390b14c/dms3rep/multi/opt/Messages+from+Breaking+Vases-640w.jpg"></i></a>
<br>
-->
<p>In every language you have opposite words, like high - low, Laughing and crying. Sweden has this as well. See some have them below.</p>
<table>
<tr>
<th style="background-color: #00c3ff"> <code>Img 1</code></th>
<th style="background-color: #00FFFF">Swe</th>
<th style="background-color: #00c3ff"> <code>Img 2</code></th>
<th style="background-color: #00FFFF">Swe</th>
<th>Eng</th>
<th>Audio</th>
</tr>
<tr>
<td><img src="imgs/round_earth.JPG" alt="round" /></td>
<td>Rund</td>
<td><img src="imgs/platt.jpg" alt="flat_plat" /></td>
<td>Platt</td>
<td>Round and Flat</td>
<td><audio src="audio/rund_platt.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/black.png" alt="black" /></td>
<td>Svart</td>
<td><img src="imgs/white.png" alt="white" /></td>
<td>Vit</td>
<td>Black and White</td>
<td><audio src="audio/black_white.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/dry.JPG" alt="dry" /></td>
<td>Torr</td>
<td><img src="imgs/wet.JPG" alt="wet" /></td>
<td>Vått</td>
<td>Dry and Wet</td>
<td><audio src="audio/dry_wet.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/cold.JPG" alt="cold" /></td>
<td>Kall</td>
<td><img src="imgs/hot.JPG" alt="hot" /></td>
<td>Varm eller Het</td>
<td>Cold and Warm / Hot</td>
<td><audio src="audio/cold_warm.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/light.JPG" alt="light" /></td>
<td>Ljus</td>
<td><img src="imgs/dark.JPG" alt="dark" /></td>
<td>Mörk</td>
<td>Light and Dark</td>
<td><audio src="audio/light_dark.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/laugh.png" alt="laugh" /></td>
<td>Rolig</td>
<td><img src="imgs/boring.jpg" alt="bored" /></td>
<td>Tråkig</td>
<td>Funny and Boring</td>
<td><audio src="audio/fun_bored.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/stripes.JPG" alt="stripe" /></td>
<td>Randig</td>
<td><img src="imgs/checkered.JPG" alt="checker" /></td>
<td>Rutig</td>
<td>Stripes and Checkered</td>
<td><audio src="audio/stripe_check.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/bred.png" alt="wide" /></td>
<td>Bred</td>
<td><img src="imgs/small.JPG" alt="small_thin" /></td>
<td>Small</td>
<td>Wide and Small</td>
<td><audio src="audio/wide_small.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/fat.jpg" alt="fat" /></td>
<td>Fet</td>
<td><img src="imgs/thin.JPG" alt="thin" /></td>
<td>Tunn</td>
<td>Fat and Thin</td>
<td><audio src="audio/fat_thin.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/krokig.JPG" alt="bend" /></td>
<td>Krokig</td>
<td><img src="imgs/rak.JPG" alt="straigh" /></td>
<td>Rak</td>
<td>Straight and Bend</td>
<td><audio src="audio/krok_rak.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/right.JPG" alt="right" /></td>
<td>Rätt</td>
<td><img src="imgs/wrong.JPG" alt="wrong" /></td>
<td>Fel</td>
<td>Right and Wrong</td>
<td><audio src="audio/right_wrong.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/healthy.png" alt="healthy" /></td>
<td>Frisk</td>
<td><img src="imgs/sick.JPG" alt="sick" /></td>
<td>Sjuk</td>
<td>Healthy and Sick</td>
<td><audio src="audio/health_sick.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/strong.JPG" alt="strong" /></td>
<td>Stark</td>
<td><img src="imgs/weak.JPG" alt="weak" /></td>
<td>Svag</td>
<td>Strong and Weak</td>
<td><audio src="audio/strong_weak.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/very_light.JPG" alt="very light" /></td>
<td>Lätt</td>
<td><img src="imgs/heavy.JPG" alt="heavy" /></td>
<td>Tung</td>
<td>Strong and Weak</td>
<td><audio src="audio/light_heavy.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/good.JPG" alt="good" /></td>
<td>Bra</td>
<td><img src="imgs/bad.JPG" alt="bad" /></td>
<td>Dålig</td>
<td>Good and Bad</td>
<td><audio src="audio/good_bad.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/beauty.JPG" alt="beauty" /></td>
<td>Vacker and for Man: Snygg</td>
<td><img src="imgs/ugly.JPG" alt="ugly" /></td>
<td>Ful</td>
<td>Beautiful and Ugly</td>
<td><audio src="audio/beauty_ugly.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/relax.JPG" alt="relax" /></td>
<td>Lung</td>
<td><img src="imgs/stressed.jpg" alt="stressed" /></td>
<td>Orolig</td>
<td>Relax and Stress</td>
<td><audio src="audio/relax_stress.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/clean.JPG" alt="clean" /></td>
<td>Ren</td>
<td><img src="imgs/dirthy.JPG" alt="dirty" /></td>
<td>Smutsig</td>
<td>Clean and Dirty</td>
<td><audio src="audio/clean_dirty.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/old.JPG" alt="old" /></td>
<td>Gammal</td>
<td><img src="imgs/young.JPG" alt="young" /></td>
<td>Ung</td>
<td>Old and Young</td>
<td><audio src="audio/old_young.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/old_car.JPG" alt="old car" /></td>
<td>Gammal</td>
<td><img src="imgs/new_car.JPG" alt="new car" /></td>
<td>Ny</td>
<td>Old and New</td>
<td><audio src="audio/old_new.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/rich.JPG" alt="rich" /></td>
<td>Rik</td>
<td><img src="imgs/poor.JPG" alt="poor" /></td>
<td>Fattig</td>
<td>Rich and Poor</td>
<td><audio src="audio/rich_poor.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/open.JPG" alt="open" /></td>
<td>Öppen</td>
<td><img src="imgs/closed.JPG" alt="closed" /></td>
<td>Stäng</td>
<td>Open and Closed</td>
<td><audio src="audio/open_close.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/free.JPG" alt="free" /></td>
<td>Ledig</td>
<td><img src="imgs/busy.JPG" alt="busy" /></td>
<td>Upptagen</td>
<td>Free and Busy</td>
<td><audio src="audio/free_busy.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/soft.JPG" alt="soft" /></td>
<td>Mjuk</td>
<td><img src="imgs/hard.JPG" alt="hard" /></td>
<td>Hård</td>
<td>Soft and Hard</td>
<td><audio src="audio/soft_hard.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/day.JPG" alt="day" /></td>
<td>Dag</td>
<td><img src="imgs/night.JPG" alt="night" /></td>
<td>Natt</td>
<td>Day and Night</td>
<td><audio src="audio/day_night.mp3" controls> </audio></td>
</tr>
<tr>
<td><img src="imgs/hel.jpg" alt="whole_hel" /></td>
<td>Hel</td>
<td><img src="imgs/broken.JPG" alt="broken" /></td>
<td>Trasig</td>
<td>Whole and Broken</td>
<td><audio src="audio/hel_broken.mp3" controls> </audio></td>
</tr>
</table>
<!--End Lesson 17 Opposites - Motsatser-->
<h2><a id="Bra-Bättre-Bäst">Lesson 18: Good, Better, Best - Bra, Bättre, Bäst</a></h2>
<!--Start Lesson 18 Good, Better, Best - Bra, Bättre, Best -->
<p>In English you are aware of the following: <b>Good, Better, Best</b> or <b>High, Higher, Highest</b> I have put a list together here below. This has also a fancy group word, but as promised I will not mention it :)</p>
<br>
<table>
<tr>
<th>Eng</th>
<th style="background-color: #00FFFF">Swe</th>
<th>Audio</th>
</tr>
<tr>
<td>Good, Better, Best</td>
<td>Bra, Bättre, Bäst</td>
<td><audio src="audio/good_bra.mp3" controls> </audio></td>