-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclean.html
More file actions
1071 lines (974 loc) · 42.8 KB
/
clean.html
File metadata and controls
1071 lines (974 loc) · 42.8 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
<wiki-page>
<!--Section Begins-->
<br />
<p></p>
<div name="Lijst" align="left" style="margin: 0.00mm 0.00mm 0.00mm 4.91mm; padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: -4.91mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">2.4.6 Versie: 0.1 - Datum laatste wijziging: 23-09-2010</p>
</div>
<p></p>
<div name="Lijst" align="left" style="margin: 0.00mm 0.00mm 0.00mm 4.91mm; padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: -4.91mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Blackboard 9.1 </p>
</div>
<p></p>
<div name="Kop 2" align="left" style="margin: 4.17mm 0.00mm 1.04mm 0.00mm; padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<b>
<i>2</i>
</b>
<b>
<i>.</i>
</b>
<b>
<i>4.6 Blackboard editor gebruiken</i>
</b>
<b>
<i></i>
</b>
</p>
</div>
<p></p>
<div name="Kop 3" align="left" style="margin: 4.17mm 0.00mm 1.04mm 0.00mm; padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<b>Wie?</b>
</p>
</div>
<p></p>
<div name="Platte tekst" align="left" style="margin: 0.00mm 0.00mm 2.08mm 0.00mm; padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Instructor, coursebuilder en teacher.</p>
</div>
<p></p>
<div name="Kop 3" align="left" style="margin: 4.17mm 0.00mm 1.04mm 0.00mm; padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<b>Wat?</b>
<b></b>
</p>
</div>
<p></p>
<div name="Platte tekst" align="left" style="margin: 0.00mm 0.00mm 2.08mm 0.00mm; padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Je kunt bij het toevoegen van content in een cursus gebruik maken van de Blackboard editor.</p>
</div>
<p></p>
<div name="Kop 2" align="left" style="margin: 1.56mm 1.56mm 1.56mm 1.56mm; padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<b>
<i></i>
</b>
</p>
</div>
<p></p>
<div name="Kop 2" align="left" style="margin: 1.56mm 1.56mm 1.56mm 1.56mm; padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<b>
<i>Hoe?</i>
</b>
<b>
<i></i>
</b>
</p>
</div>
<p></p>
<div name="Kop 3" align="left" style="margin: 1.56mm 1.56mm 1.56mm 1.56mm; padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<b>Startpunt:</b>
<b></b>
</p>
</div>
<ul>
<li value="1">
<p></p>
<div name="Standaard" align="left" style="margin: 0.00mm 0.00mm 0.00mm 33.02mm; padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: -6.25mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Ga via de Blackboard Startpagina naar een course</p>
</div>
</li>
<li value="2">
<p></p>
<div name="Standaard" align="left" style="margin: 0.00mm 0.00mm 0.00mm 33.02mm; padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: -6.25mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
Klik in het menu op <b>[Content]</b>of een ander onderdeel van het menu waar content geplaatst moet worden.
<br />
</p>
</div>
</li>
</ul>
<p></p>
<div name="Standaard" align="left" style="margin: 0.00mm 0.00mm 0.00mm 26.77mm; padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="201" height="243" alt="0x01 graphic" src="out0.png" />
<br />
<br />
<b>
<u>
<br />
</u>
</b>
</p>
</div>
<ul>
<li value="3">
<p></p>
<div name="Standaard" align="left" style="margin: 0.00mm 0.00mm 0.00mm 33.02mm; padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: -6.25mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
Klik op <b>[</b>
<b>C</b>
<b>reate item]</b>
<b></b>
</p>
</div>
</li>
</ul>
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<b></b>
</p>
</div>
<p></p>
<div name="Standaard" align="left" style="margin: 0.00mm 0.00mm 0.00mm 25.00mm; padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<b>
<img width="88" height="17" alt="0x01 graphic" src="out1.png" />
<br />
</b>
<b></b>
</p>
</div>
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; "> </p>
</div>
<ul>
<li value="1">
<p></p>
<div name="Standaard" align="left" style="margin: 0.00mm 0.00mm 0.00mm 31.25mm; padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: -6.25mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
Vulonder <b>[Content information]</b>
een onderwerp in bij
<b>[Name]</b>,
</p>
</div>
</li>
<li value="2">
<p></p>
<div name="Standaard" align="left" style="margin: 0.00mm 0.00mm 0.00mm 31.25mm; padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: -6.25mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
Kies bij <b>[Color of Name]</b>
een kleur voor het weergeven van de naam.
</p>
</div>
</li>
<li value="3">
<p></p>
<div name="Standaard" align="left" style="margin: 0.00mm 0.00mm 0.00mm 31.25mm; padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: -6.25mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
Klik [ <b>Apply]</b>
</p>
</div>
</li>
<li value="4">
<p></p>
<div name="Standaard" align="left" style="margin: 0.00mm 0.00mm 0.00mm 31.25mm; padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: -6.25mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Klik in het tekstvak van de editor. De knop `ON' rechtsboven geeft aan dat je beschikking hebt over alle functies van de editor. Klik je rechts naast `ON' dan zet je de functies uit en krijg je een eenvoudige editor.</p>
</div>
</li>
</ul>
<p></p>
<div name="Standaard" align="left" style="margin: 0.00mm 0.00mm 0.00mm 31.25mm; padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; "></p>
</div>
<p></p>
<div name="Standaard" align="left" style="margin: 0.00mm 0.00mm 0.00mm 31.25mm; padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; "></p>
</div>
<p></p>
<div name="Standaard" align="left" style="margin: 0.00mm 0.00mm 0.00mm 31.25mm; padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; "></p>
</div>
<p></p>
<div name="Standaard" align="left" style="margin: 0.00mm 0.00mm 0.00mm 31.25mm; padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img alt="0x08 graphic" src="StrangeNoGraphicData" />
<br />
<img width="638" height="398" alt="0x08 graphic" src="out2.png" />
<br />
<img alt="0x08 graphic" src="StrangeNoGraphicData" />
<br />
</p>
</div>
<ul>
<li value="5">
<p></p>
<div name="Standaard" align="left" style="margin: 0.00mm 0.00mm 0.00mm 31.25mm; padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: -6.25mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="405" height="413" alt="0x08 graphic" src="out3.png" />
<br />
Je kunt vervolgens in je editor diverse bestanden toevoegen, lettertypen, wiskundige formules e.d. gebruiken. Een overzicht van de functies vind je op de volgende bladzijde. Hieronder wordt een illustratie toegevoegd.
</p>
</div>
</li>
</ul>
<p></p>
<div name="Standaard" align="left" style="margin: 0.00mm 0.00mm 0.00mm 31.25mm; padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; "></p>
</div>
<p></p>
<div name="Standaard" align="left" style="margin: 0.00mm 0.00mm 0.00mm 12.50mm; padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
Bewaar het item door op <b>[Submit]</b>te klikken.
</p>
</div>
<p></p>
<div name="Standaard" align="left" style="margin: 0.00mm 0.00mm 0.00mm 12.50mm; padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; "></p>
</div>
<p></p>
<div name="Standaard" align="left" style="margin: 0.00mm 0.00mm 0.00mm 12.50mm; padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<b>Functies in de Blackboard editor</b>
<b></b>
</p>
</div>
<table width="92.72%" border="1" cols="2" rows="39">
<tbody>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="86" height="23" alt="0x01 graphic" src="out4.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Stel de opmaak van de tekst in.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="39" height="23" alt="0x01 graphic" src="out5.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Stel de tekstgrootte in.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="126" height="23" alt="0x01 graphic" src="out6.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Stel het lettertype in.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="25" height="21" alt="0x01 graphic" src="out7.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Maak tekst dikgedrukt.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="21" height="20" alt="0x01 graphic" src="out8.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Maak tekst schuingedrukt.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="21" height="21" alt="0x01 graphic" src="out9.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Maak tekst onderstreept.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="29" height="21" alt="0x01 graphic" src="out10.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Maak tekst doorgehaald.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="21" height="21" alt="0x01 graphic" src="out11.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Schrijf in subscript.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="22" height="21" alt="0x01 graphic" src="out12.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Schrijf in superscript. Bijvoorbeeld X²</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="31" height="29" alt="0x01 graphic" src="out13.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Lijn de tekst links uit.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="27" height="25" alt="0x01 graphic" src="out14.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Lijn de tekst in het midden uit.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="27" height="26" alt="0x01 graphic" src="out15.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Lijn de tekst rechts uit.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="29" height="23" alt="0x01 graphic" src="out16.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Maak een genummerde opsomming.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="22" height="26" alt="0x01 graphic" src="out17.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Maak een opsomming met rondjes.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="23" height="26" alt="0x01 graphic" src="out18.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Laat de tekst naar links springen.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="26" height="21" alt="0x01 graphic" src="out19.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Laat de tekst naar rechts uitspringen.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="26" height="27" alt="0x01 graphic" src="out20.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Gebruik spellingscontrole.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="21" height="25" alt="0x01 graphic" src="out21.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Knippen van een stuk tekst/media.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="27" height="23" alt="0x01 graphic" src="out22.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Kopiëren van een stuk tekst/media.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="22" height="26" alt="0x01 graphic" src="out23.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Plakken van een stuk tekst/media.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="25" height="20" alt="0x01 graphic" src="out24.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Verwijder tekstopmaak van (geselecteerde) tekst.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="21" height="21" alt="0x01 graphic" src="out25.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Ongedaan maken.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="26" height="21" alt="0x01 graphic" src="out26.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Herhalen.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="23" height="29" alt="0x01 graphic" src="out27.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Maak een hyperlink (weblink) van de geselecteerde tekst.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="29" height="20" alt="0x01 graphic" src="out28.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Maak een tabel.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="27" height="20" alt="0x01 graphic" src="out29.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Voeg een tekstvakbrede lijn toe.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="27" height="20" alt="0x01 graphic" src="out30.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Stel de tekstkleur in.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="25" height="25" alt="0x01 graphic" src="out31.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Arceer de tekst.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="21" height="26" alt="0x01 graphic" src="out32.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Voeg een WebEQ formule/vergelijking toe </p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="23" height="21" alt="0x01 graphic" src="out33.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Bekijk de HMTL broncode van de tekst.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="25" height="25" alt="0x01 graphic" src="out34.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Bekijk een voorbeeld van de pagina.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="27" height="21" alt="0x01 graphic" src="out35.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Controleer de HTML opmaak.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="22" height="26" alt="0x01 graphic" src="out36.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Voeg een link met een bijlage naar een bestand toe.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="28" height="21" alt="0x01 graphic" src="out37.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Voeg een afbeelding toe.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="27" height="20" alt="0x01 graphic" src="out38.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Voeg een MPG/AVI videobestand toe.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="23" height="22" alt="0x01 graphic" src="out39.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Voeg een quicktime videobestand toe.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="26" height="25" alt="0x01 graphic" src="out40.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Voeg een audiobestand toe.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="31" height="21" alt="0x01 graphic" src="out41.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Voeg een flashfilmpje toe.</p>
</div>
</td>
</tr>
<tr>
<td bgcolor="White" width="23.29%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">
<img width="27" height="21" alt="0x01 graphic" src="out42.png" />
<br />
</p>
</div>
</td>
<td bgcolor="White" width="76.71%" rowspan="1" colspan="1">
<p></p>
<div name="Standaard" align="left" style=" padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; ">Voeg een Mashup toe, zie 2.4.11 en 2.4.12.</p>
</div>
</td>
</tr>
</tbody>
</table>
<p></p>
<div name="Standaard" align="left" style="margin: 0.00mm 0.00mm 0.00mm 7.50mm; padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; "></p>
</div>
<p></p>
<div name="Standaard" align="left" style="margin: 0.00mm 0.00mm 0.00mm 32.50mm; padding: 0.00mm 0.00mm 0.00mm 0.00mm; ">
<p style="text-indent: 0.00mm; text-align: left; line-height: 4.166667mm; color: White; background-color: White; "></p>
</div>
<p></p>