-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmodules.html
1385 lines (1321 loc) · 69.8 KB
/
modules.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=1, shrink-to-fit=no">
<link rel="shortcut icon" href="img/favicon.png" type="image/x-icon" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="styles/all.css" media="all">
<link rel="stylesheet" type="text/css" href="styles/webinarBanner.css" media="all">
<link rel="stylesheet" type="text/css" href="styles/announcementBanner.css" media="all">
<link rel="stylesheet" type="text/css" href="styles/modules.css" media="all">
<link rel="stylesheet" type="text/css" href="styles/header.css" media="all">
<link rel="stylesheet" type="text/css" href="styles/footer.css" media="all">
<meta name='twitter:card' content="summary">
<meta name='twitter:title' content="Social Media TestDrive">
<meta name='twitter:description' content="Welcome to the Social Media TestDrive official website!">
<meta name='twitter:image' content='https://dhpd030vnpk29.cloudfront.net/squareLogo.png'>
<meta property='og:url' content='https://socialmediatestdrive.org/'>
<meta property='og:title' content="Social Media TestDrive">
<meta property='og:description' content='Welcome to the Social Media TestDrive official website!'>
<meta property='og:image' content='https://dhpd030vnpk29.cloudfront.net/squareLogo.png'>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-145467622-3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-145467622-3');
</script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-BVBF8VW9D6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-BVBF8VW9D6');
</script>
<title>TestDrive Modules</title>
</head>
<body>
<header>
<nav class="navbar navbar-light">
<a href="index.html" class="logoLinkContainer">
<img src="img/testDriveLogo.svg" width="110px" height="110px" class="d-inline-block align-top testDriveLogo" alt="Social Media TestDrive Logo">
<span class="navbar-brand fancy d-none d-md-inline-block align-middle">
Test<span class="brand">Drive</span>
</span>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item d-sm-block d-lg-none">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="modules.html">Modules</a>
</li>
<li class="nav-item">
<a class="nav-link" href="for_educators.html">For Educators</a>
</li>
<li class="nav-item">
<a class="nav-link" href="for_parents.html">For Parents</a>
</li>
<li class="nav-item">
<a class="nav-link" href="for_researchers.html">For Researchers</a>
</li>
<li class="nav-item">
<a class="nav-link" href="testdrive_studies.html">TestDrive Studies</a>
</li>
<li class="nav-item">
<a class="nav-link" href="faq.html">FAQ</a>
</li>
<li class="nav-item">
<a class="nav-link" href="team.html">Team</a>
</li>
<li class="nav-item">
<a class="nav-link alignItemsCenter" href="donate.html">
<!-- Free, open source bootstrap icon: megaphone fill -->
<!-- Copied HTML from: https://icons.getbootstrap.com/icons/heart-fill/ -->
<!-- Altered the width, height, and fill -->
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="#0093EC" class="bi bi-suit-heart-fill donationHeart" viewBox="0 0 16 16">
<path
d="M4 1c2.21 0 4 1.755 4 3.92C8 2.755 9.79 1 12 1s4 1.755 4 3.92c0 3.263-3.234 4.414-7.608 9.608a.513.513 0 0 1-.784 0C3.234 9.334 0 8.183 0 4.92 0 2.755 1.79 1 4 1z" />
</svg>
<b>Donate</b>
</a>
</li>
</ul>
</div>
</nav>
</header>
<main>
<div class='container-fluid'>
<!-- Temporary advertisement for webinar -->
<!-- <div class="row align-items-center webinarBanner">
<div class="col-12 d-flex align-items-center">
<img class="d-none d-md-block" src="img/webinars/20201020_commonsense-event.png" alt="">
<h3> View our informational webinar about TestDrive! <a target="_none" href="https://home.edweb.net/webinar/commonsense20201020/">Click Here</a></h3>
</div>
</div> -->
<!-- Temporary Announcement Banner -->
<!-- Comment out when no longer needed -->
<!-- <div class="row align-items-center announcementBanner">
<div class="col-12 d-flex align-items-center"> -->
<!-- Free, open source bootstrap icon: circle fill -->
<!-- Copied HTML from: https://icons.getbootstrap.com/icons/circle-fill/ -->
<!-- Altered the width, height, and fill -->
<!-- <svg xmlns="http://www.w3.org/2000/svg" width="50" height="50" fill="#E94B68" class="bi bi-circle-fill topLeftCircle" viewBox="0 0 16 16">
<circle cx="8" cy="8" r="8"/>
</svg> -->
<!-- Free, open source bootstrap icon: megaphone fill -->
<!-- Copied HTML from: https://icons.getbootstrap.com/icons/megaphone-fill/ -->
<!-- Altered the width, height, and fill -->
<!-- <svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" fill="white" class="bi bi-megaphone-fill topLeftIcon" viewBox="0 0 16 16">
<path d="M13 2.5a1.5 1.5 0 0 1 3 0v11a1.5 1.5 0 0 1-3 0v-11zm-1 .724c-2.067.95-4.539 1.481-7 1.656v6.237a25.222 25.222 0 0 1 1.088.085c2.053.204 4.038.668 5.912 1.56V3.224zm-8 7.841V4.934c-.68.027-1.399.043-2.008.053A2.02 2.02 0 0 0 0 7v2c0 1.106.896 1.996 1.994 2.009a68.14 68.14 0 0 1 .496.008 64 64 0 0 1 1.51.048zm1.39 1.081c.285.021.569.047.85.078l.253 1.69a1 1 0 0 1-.983 1.187h-.548a1 1 0 0 1-.916-.599l-1.314-2.48a65.81 65.81 0 0 1 1.692.064c.327.017.65.037.966.06z"/>
</svg> -->
<!-- announcement Banner Text -->
<!-- <p style="word-break: break-word; white-space: normal;">
<span class="largeText boldText">New!</span> Modules now have quizzes (at the end) to assess student knowledge!
</p>
</div>
</div> -->
<!-- Title -->
<div class="row justify-content-center" style="padding-top:3em;">
<div class="col-sm-12 col-md-10 col-lg-10 text-center">
<h1> Help youth navigate the digital world </h1>
</div>
</div>
<!-- Subtitle -->
<div class="row justify-content-center">
<div class="col-md-10 col-lg-6 text-center">
<h4>
Like a driving simulator for young people learning to drive a car for the first time, Social Media TestDrive provides a simulated experience of realistic digital dilemmas and scenarios, along with key concepts and strategies for navigating them.
</h4>
</div>
</div>
<!-- Pagination for the carousel -->
<!-- <div class="row align-items-center justify-content-center" style="height:70px !important;">
<nav aria-label="Page navigation example" class="d-none d-md-block">
<ol class="pagination">
<li class="page-item">
<a class="page-link" role="button" href="#carouselExampleIndicators" data-slide="prev">
<span aria-hidden="true">‹</span>
<span class="sr-only">Previous</span>
</a>
</li>
<li class="page-item pageBlankOf">
<span>Page <span id="pageNumber">1</span>
of 2</span>
</li>
<li class="page-item">
<a class="page-link" role ="button" href="#carouselExampleIndicators" data-slide="next">
<span aria-hidden="true">›</span>
<span class="sr-only">Next</span>
</a>
</li>
</ol>
</nav>
</div> -->
<!-- Carousel, tablet and fullscreen view -->
<!-- <div class="row d-none d-md-block" style="min-height:1024px;">
<div class="col carouselColumn">
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel" data-interval="false" data-wrap="false">
<div class="carousel-inner"> -->
<!-- Carousel Page 1 (full, do not add more modules here) -->
<!-- <div class="carousel-item active">
<div class="card-deck"> -->
<!-- Healthy Social Media Habits -->
<!-- <div class="col-md-6 col-lg-4 d-flex justify-content-center moduleColumn">
<div class="card" style="width: 18rem;">
<a href="https://app.socialmediatestdrive.org/intro/habits" class="card-text" target="_none">
<div class="container cardImgContainer">
<img class="card-img-top" src="img/smhabits.png" alt="Healthy Social Media Habits">
<div class="card-img-overlay">
<span class="card-title moduleCardTitle">
Healthy Social Media Habits
</span>
</div>
</div>
</a>
<div class="card-body">
<span class="card-text">
Explore how social media platforms are
designed to keep your attention and practice healthy
media habits to achieve media balance.
</span>
<a href="https://app.socialmediatestdrive.org/intro/habits" class="card-text" target="_none">
Click here to start
</a>
<span class="card-text">
the module.
</span>
<br>
<br>
<span class="card-text">
<span class="card-text-csAlignment">
Aligned with Common Sense Education's Digital
Citizenship lesson: Digital Media and Your Brain.
<a href="https://www.commonsense.org/education/digital-citizenship/lesson/digital-media-and-your-brain" target="_blank">
Learn more...
</a>
</span>
</span>
</div>
</div>
</div> -->
<!-- Targeted Advertising -->
<!-- <div class="col-md-6 col-lg-4 d-flex justify-content-center moduleColumn">
<div class="card" style="width: 18rem;">
<a href="https://app.socialmediatestdrive.org/intro/targeted" class="card-text" target="_none">
<div class="container cardImgContainer">
<img class="card-img-top" id="heightReference" src="img/targetedads.png" alt="Targeted Advertising">
<div class="card-img-overlay">
<span class="card-title moduleCardTitle">Ads on Social Media</span>
</div>
</div>
</a>
<div class="card-body">
<span class="card-text">
Explore how companies collect user data to
display targeted ads on social media and learn how to
identify ads and sponsored posts within your feed.
</span>
<a href="https://app.socialmediatestdrive.org/intro/targeted" class="card-text" target="_none">
Click here to start
</a>
<span class="card-text">
the module.
</span>
<br>
<br>
<span class="card-text-csAlignment">
Aligned with Common Sense Education's Digital
Citizenship lesson: Big, Big Data.
<a href="https://www.commonsense.org/education/digital-citizenship/lesson/big-big-data" target="_blank">
Learn more...
</a>
</span>
</div>
</div>
</div> -->
<!-- Scams and Phishing -->
<!-- <div class="col-md-6 col-lg-4 d-flex justify-content-center moduleColumn">
<div class="card" style="width: 18rem;">
<a href="https://app.socialmediatestdrive.org/intro/phishing" class="card-text" target="_none">
<div class="container cardImgContainer">
<img class="card-img-top" src="img/phishing.png" alt="Phishing">
<div class="card-img-overlay">
<span class="card-title moduleCardTitle">Scams and Phishing</span>
</div>
</div>
</a>
<div class="card-body">
<span class="card-text">
Understand the consequences of identity theft
and learn how to identify and take action against
phishing scams on social media.
</span>
<a href="https://app.socialmediatestdrive.org/intro/phishing" class="card-text" target="_none">
Click here to start
</a>
<span class="card-text">
the module.
</span>
<br>
<br>
<span class="card-text">
<span class="card-text-csAlignment">
Aligned with Common Sense Education's Digital
Citizenship lesson: Don’t Feed the Phish.
<a href="https://www.commonsense.org/education/digital-citizenship/lesson/dont-feed-the-phish" target="_blank">
Learn more...
</a>
</span>
</span>
</div>
</div>
</div> -->
<!-- How To Be An Upstander -->
<!-- <div class="col-md-6 col-lg-4 d-flex justify-content-center moduleColumn">
<div class="card" style="width: 18rem;">
<a href="https://app.socialmediatestdrive.org/intro/cyberbullying" class="card-text" target="_none">
<div class="container cardImgContainer">
<img class="card-img-top" id="heightReference" src="img/upstander.png" alt="Upstander">
<div class="card-img-overlay">
<span class="card-title moduleCardTitle">
How to Be an Upstander
</span>
</div>
</div>
</a>
<div class="card-body">
<span class="card-text">
Identify signs of cyberbullying and practice
how to respond when seeing cyberbullying happening to
others.
</span>
<a href="https://app.socialmediatestdrive.org/intro/cyberbullying" class="card-text" target="_none">
Click here to start
</a>
<span class="card-text">
the module.
</span>
<br>
<br>
<span class="card-text-csAlignment">
Aligned Common Sense Education's Digital
Citizenship Lesson: Upstanders and Allies: Taking
Action Against Cyberbullying.
<a href="https://www.commonsense.org/education/digital-citizenship/lesson/upstanders-and-allies-taking-action-against-cyberbullying" target="_blank" style-"z-index:1000;">
Learn more...
</a>
</span>
</div>
</div>
</div> -->
<!-- Is It Private Information? -->
<!-- <div class="col-md-6 col-lg-4 d-flex justify-content-center moduleColumn">
<div class="card" style="width: 18rem;">
<a href="https://app.socialmediatestdrive.org/intro/safe-posting" class="card-text" target="_none">
<div class="container cardImgContainer">
<img class="card-img-top" id="heightReference" src="img/privateinfo.png" alt="Private Information">
<div class="card-img-overlay">
<span class="card-title moduleCardTitle">
Is It Private Information?
</span>
</div>
</div>
</a>
<div class="card-body">
<span class="card-text">
Learn what is safe to share with different
social media audiences and what kind of information is
inappropriate to share on social media.
</span>
<a href="https://app.socialmediatestdrive.org/intro/safe-posting" class="card-text" target="_none">
Click here to start
</a>
<span class="card-text">
the module.
</span>
<br>
<br>
<span class="card-text-csAlignment">
Aligned with Common Sense Education's Digital
Citizenship lesson:Chatting Safely Online.
<a href="https://www.commonsense.org/education/digital-citizenship/lesson/chatting-safely-online" target="_blank">
Learn more...
</a>
</span>
</div>
</div>
</div> -->
<!-- Shaping Your Digital Footprint -->
<!-- <div class="col-md-6 col-lg-4 d-flex justify-content-center moduleColumn">
<div class="card" style="width: 18rem;">
<a href="https://app.socialmediatestdrive.org/intro/digfoot" class="card-text" target="_none">
<div class="container cardImgContainer">
<img class="card-img-top" id="heightReference" src="img/digfoot.png" alt="Digital Footprints">
<div class="card-img-overlay">
<span class="card-title moduleCardTitle">
Shaping Your Digital Footprint
</span>
</div>
</div>
</a>
<div class="card-body">
<span class="card-text">
Explore how actions on social media create a
digital footprint and learn skills to positively shape
digital footprints.
</span>
<a href="https://app.socialmediatestdrive.org/intro/digfoot" class="card-text" target="_none">
Click here to start
</a>
<span class="card-text">
the module.
</span>
<br>
<br>
<span class="card-text-csAlignment">
Aligned with Common Sense Education's Digital
Citizenship lesson: Social Media and Digital Footprints.
<a href="https://www.commonsense.org/education/digital-citizenship/lesson/social-media-and-digital-footprints-our-responsibilities" target="_blank">
Learn more...
</a>
</span>
</div>
</div>
</div>
</div>
</div> -->
<!-- Carousel Page 2 -->
<!-- <div class="carousel-item">
<div class="card-deck"> -->
<!-- Online Identities -->
<!-- <div class="col-md-6 col-lg-4 d-flex justify-content-center moduleColumn">
<div class="card" style="width: 18rem;">
<a href="https://app.socialmediatestdrive.org/intro/presentation" class="card-text" target="_none">
<div class="container cardImgContainer">
<img class="card-img-top" id="heightReference" src="img/onlineidentity.png" alt="Online Identities">
<div class="card-img-overlay">
<span class="card-title moduleCardTitle">
Online Identities
</span>
</div>
</div>
</a>
<div class="card-body">
<span class="card-text">
Learn how to manage self-presentation and how
online identities can change with different audiences
on social media.
</span>
<a href="https://app.socialmediatestdrive.org/intro/presentation" class="card-text" target="_none">
Click here to start
</a>
<span class="card-text">
the module.
</span>
<br>
<br>
<span class="card-text-csAlignment">
Aligned with Common Sense Education's Digital
Citizenship lesson:Who Are You Online?
<a href="https://www.commonsense.org/education/digital-citizenship/lesson/who-are-you-online" target="_blank">
Learn more...
</a>
</span>
</div>
</div>
</div> -->
<!-- Social Media Privacy -->
<!-- <div class="col-md-6 col-lg-4 d-flex justify-content-center moduleColumn">
<div class="card" style="width: 18rem;">
<a href="https://app.socialmediatestdrive.org/intro/privacy" class="card-text" target="_none">
<div class="container cardImgContainer">
<img class="card-img-top" id="heightReference" src="img/smprivacy.png" alt="Social Media Privacy">
<div class="card-img-overlay">
<span class="card-title moduleCardTitle">Social Media Privacy</span>
</div>
</div>
</a>
<div class="card-body">
<span class="card-text">
Understand how social media sites collect
information about users and learn strategies for
protecting privacy on social media.
</span>
<a href="https://app.socialmediatestdrive.org/intro/privacy" class="card-text" target="_none">
Click here to start
</a>
<span class="card-text">
the module.
</span>
<br>
<br>
<span class="card-text-csAlignment">
Aligned with Common Sense Education's Digital
Citizenship lesson: Being Aware of What You Share.
<a href="https://www.commonsense.org/education/digital-citizenship/lesson/being-aware-of-what-you-share" target="_blank">
Learn more...
</a>
</span>
</div>
</div>
</div> -->
<!-- News in Social Media -->
<!-- <div class="col-md-6 col-lg-4 d-flex justify-content-center moduleColumn">
<div class="card" style="width: 18rem;">
<a href="https://app.socialmediatestdrive.org/intro/digital-literacy" class="card-text" target="_none">
<div class="container cardImgContainer">
<img class="card-img-top" id="heightReference" src="img/news.png" alt="Fake News">
<div class="card-img-overlay">
<span class="card-title moduleCardTitle">
News in Social Media
</span>
</div>
</div>
</a>
<div class="card-body">
<span class="card-text">
Understand why fake news exists and how to
identify the telltale signs of fake news on social
media.
</span>
<a href="https://app.socialmediatestdrive.org/intro/digital-literacy" class="card-text" target="_none">
Click here to start
</a>
<span class="card-text">
the module.
</span>
<br>
<br>
<span class="card-text">
<span class="card-text-csAlignment">
Aligned with Common Sense Education's Digital
Citizenship lesson: Finding Credible News.
<a href="https://www.commonsense.org/education/digital-citizenship/lesson/finding-credible-news" target="_blank">
Learn more...
</a>
</span>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div> -->
<!-- mobile view, no carousel -->
<!-- Healthy Social Media Habits -->
<!-- <div class="row paddedTop d-sm-block d-md-none">
<div class="card" style="width: 18rem;">
<a href="https://app.socialmediatestdrive.org/intro/habits" class="card-text" target="_none">
<div class="container cardImgContainer">
<img class="card-img-top" id="heightReference" src="img/smhabits.png" alt="Healthy Social Media Habits">
<div class="card-img-overlay">
<span class="card-title moduleCardTitle">
Healthy Social Media Habits
</span>
</div>
</div>
</a>
<div class="card-body">
<span class="card-text">
Explore how social media platforms are designed to keep
your attention and practice healthy media habits to achieve media
balance.
</span>
<a href="https://app.socialmediatestdrive.org/intro/habits" class="card-text" target="_none">
Click here to start
</a>
<span class="card-text">
the module.
</span>
<br>
<br>
<span class="card-text-csAlignment">
Aligned with Common Sense Education's Digital
Citizenship lesson: Digital Media and Your Brain.
<a href="https://www.commonsense.org/education/digital-citizenship/lesson/digital-media-and-your-brain" target="_blank">
Learn more...
</a>
</span>
</div>
</div>
</div> -->
<!-- Targeted Advertising -->
<!-- <div class="row paddedTop d-sm-block d-md-none">
<div class="card" style="width: 18rem;">
<a href="https://app.socialmediatestdrive.org/intro/targeted" class="card-text" target="_none">
<div class="container cardImgContainer">
<img class="card-img-top" id="heightReference" src="img/targetedads.png" alt="Targeted Advertising">
<div class="card-img-overlay">
<span class="card-title moduleCardTitle">Ads on Social Media</span>
</div>
</div>
</a>
<div class="card-body">
<span class="card=text">
Explore how companies collect user data to display
targeted ads on social media and learn how to identify ads and
sponsored posts within your feed.
</span>
<a href="https://app.socialmediatestdrive.org/intro/targeted" class="card-text" target="_none">
Click here to start
</a>
<span class="card-text">
the module.
</span>
<br>
<br>
<span class="card-text-csAlignment">
Aligned with Common Sense Education's Digital
Citizenship lesson: Big, Big Data.
<a href="https://www.commonsense.org/education/digital-citizenship/lesson/big-big-data" target="_blank">
Learn more...
</a>
</span>
</div>
</div>
</div> -->
<!-- Scams and Phishing -->
<!-- <div class="row paddedTop d-sm-block d-md-none">
<div class="card" style="width: 18rem;">
<a href="https://app.socialmediatestdrive.org/intro/phishing" class="card-text" target="_none">
<div class="container cardImgContainer">
<img class="card-img-top" id="heightReference" src="img/phishing.png" alt="Phishing">
<div class="card-img-overlay">
<span class="card-title moduleCardTitle">Scams and Phishing</span>
</div>
</div>
</a>
<div class="card-body">
<span class="card-text">
Understand the consequences of identity theft and learn
how to identify and take action against phishing scams on social
media.
</span>
<a href="https://app.socialmediatestdrive.org/intro/phishing" class="card-text" target="_none">
Click here to start
</a>
<span class="card-text">
the module.
</span>
<br>
<br>
<span class="card-text-csAlignment">
Aligned with Common Sense Education's Digital
Citizenship lesson: Don’t Feed the Phish.
<a href="https://www.commonsense.org/education/digital-citizenship/lesson/dont-feed-the-phish" target="_blank">
Learn more...
</a>
</span>
</div>
</div>
</div> -->
<!-- How to Be an Upstander -->
<!-- <div class="row paddedTop d-sm-block d-md-none">
<div class="card" style="width: 18rem;">
<a href="https://app.socialmediatestdrive.org/intro/cyberbullying" class="card-text" target="_none">
<div class="container cardImgContainer">
<img class="card-img-top" id="heightReference" src="img/upstander.png" alt="Upstander">
<div class="card-img-overlay">
<span class="card-title moduleCardTitle">
How to Be an Upstander
</span>
</div>
</div>
</a>
<div class="card-body">
<span class="card-text">
Identify signs of cyberbullying and practice how to
respond when seeing cyberbullying happening to others.
</span>
<a href="https://app.socialmediatestdrive.org/intro/cyberbullying" class="card-text" target="_none">
Click here to start
</a>
<span class="card-text">
the module.
</span>
<br>
<br>
<span class="card-text-csAlignment">
Aligned Common Sense Education's Digital
Citizenship Lesson: Upstanders and Allies: Taking Action
Against Cyberbullying.
<a href="https://www.commonsense.org/education/digital-citizenship/lesson/upstanders-and-allies-taking-action-against-cyberbullying" target="_blank">
Learn more...
</a>
</span>
</div>
</div>
</div> -->
<!-- Is It Private Information? -->
<!-- <div class="row paddedTop d-sm-block d-md-none">
<div class="card" style="width: 18rem;">
<a href="https://app.socialmediatestdrive.org/intro/safe-posting" class="card-text" target="_none">
<div class="container cardImgContainer">
<img class="card-img-top" id="heightReference" src="img/privateinfo.png" alt="Private Information">
<div class="card-img-overlay">
<span class="card-title moduleCardTitle">
Is It Private Information?
</span>
</div>
</div>
</a>
<div class="card-body">
<span class="card-text">
Learn what is safe to share with different social media
audiences and what kind of information is inappropriate to share
on social media.
</span>
<a href="https://app.socialmediatestdrive.org/intro/safe-posting" class="card-text" target="_none">
Click here to start
</a>
<span class="card-text">
the module.
</span>
<br>
<br>
<span class="card-text-csAlignment">
Aligned with Common Sense Education's Digital
Citizenship lesson: Chatting Safely Online.
<a href="https://www.commonsense.org/education/digital-citizenship/lesson/chatting-safely-online" target="_blank">
Learn more...
</a>
</span>
</div>
</div>
</div> -->
<!-- Shaping Your Digital Footprint -->
<!-- <div class="row paddedTop d-sm-block d-md-none">
<div class="card" style="width: 18rem;">
<a href="https://app.socialmediatestdrive.org/intro/digfoot" class="card-text" target="_none">
<div class="container cardImgContainer">
<img class="card-img-top" id="heightReference" src="img/digfoot.png" alt="Digital Footprints">
<div class="card-img-overlay">
<span class="card-title moduleCardTitle">
Shaping Your Digital Footprint
</span>
</div>
</div>
</a>
<div class="card-body">
<span class="card-text">
Explore how actions on social media create a digital
footprint and learn skills to positively shape digital footprints.
</span>
<a href="https://app.socialmediatestdrive.org/intro/digfoot" class="card-text" target="_none">
Click here to start
</a>
<span class="card-text">
the module.
</span>
<br>
<br>
<span class="card-text-csAlignment">
Aligned with Common Sense Education's Digital
Citizenship lesson: Social Media and Digital Footprints.
<a href="https://www.commonsense.org/education/digital-citizenship/lesson/social-media-and-digital-footprints-our-responsibilities" target="_blank">
Learn more...
</a>
</span>
</div>
</div>
</div> -->
<!-- Online Identities -->
<!-- <div class="row paddedTop d-sm-block d-md-none">
<div class="card" style="width: 18rem;">
<a href="https://app.socialmediatestdrive.org/intro/presentation" class="card-text" target="_none">
<div class="container cardImgContainer">
<img class="card-img-top" id="heightReference" src="img/onlineidentity.png" alt="Online Identities">
<div class="card-img-overlay">
<span class="card-title moduleCardTitle">
Online Identities
</span>
</div>
</div>
</a>
<div class="card-body">
<span class="card-text">
Learn how to manage self-presentation and how online
identities can change with different audiences on social media.
</span>
<a href="https://app.socialmediatestdrive.org/intro/presentation" class="card-text" target="_none">
Click here to start
</a>
<span class="card-text">
the module.
</span>
<br>
<br>
<span class="card-text-csAlignment">
Aligned with Common Sense Education's Digital
Citizenship lesson: Who Are You Online?
<a href="https://www.commonsense.org/education/digital-citizenship/lesson/who-are-you-online" target="_blank">
Learn more...
</a>
</span>
</div>
</div>
</div> -->
<!-- Social Media Privacy -->
<!-- <div class="row paddedTop d-sm-block d-md-none">
<div class="card" style="width: 18rem;">
<a href="https://app.socialmediatestdrive.org/intro/privacy" class="card-text" target="_none">
<div class="container cardImgContainer">
<img class="card-img-top" id="heightReference" src="img/smprivacy.png" alt="Social Media Privacy">
<div class="card-img-overlay">
<span class="card-title moduleCardTitle">Social Media Privacy</span>
</div>
</div>
</a>
<div class="card-body">
<span class="card-text">
Understand how social media sites collect information
about users and learn strategies for protecting privacy on social
media.
</span>
<a href="https://app.socialmediatestdrive.org/intro/privacy" class="card-text" target="_none">
Click here to start
</a>
<span class="card-text">
the module.
</span>
<br>
<br>
<span class="card-text-csAlignment">
Aligned with Common Sense Education's Digital
Citizenship lesson: Being Aware of What You Share.
<a href="https://www.commonsense.org/education/digital-citizenship/lesson/being-aware-of-what-you-share" target="_blank">
Learn more...
</a>
</span>
</div>
</div>
</div> -->
<!-- News in Social Media -->
<!-- <div class="row paddedTop d-sm-block d-md-none">
<div class="card" style="width: 18rem;">
<a href="https://app.socialmediatestdrive.org/intro/digital-literacy" class="card-text" target="_none">
<div class="container cardImgContainer">
<img class="card-img-top" id="heightReference" src="img/news.png" alt="Fake News">
<div class="card-img-overlay">
<span class="card-title moduleCardTitle">
News in Social Media
</span>
</div>
</div>
</a>
<div class="card-body">
<span class="card-text">
Understand why fake news exists and how to identify the
telltale signs of fake news on social media.
</span>
<a href="https://app.socialmediatestdrive.org/intro/digital-literacy" class="card-text" target="_none">
Click here to start
</a>
<span class="card-text">
the module.
</span>
<br>
<br>
<span class="card-text-csAlignment">
Aligned with Common Sense Education's Digital
Citizenship lesson: Finding Credible News.
<a href="https://www.commonsense.org/education/digital-citizenship/lesson/finding-credible-news" target="_blank">
Learn more...
</a>
</span>
</div>
</div>
</div> -->
<!-- New version without the pagination -->
<div class="tempModuleRows row paddedTop">
<!-- Accounts & Passwords -->
<div class="tempModuleColumns col-lg-4 col-md-6 col-sm-12">
<div class="card" style="width: 18rem;">
<a href="https://app.socialmediatestdrive.org/intro/accounts" class="card-text" target="_none">
<div class="container cardImgContainer">
<img class="card-img-top" src="img/acctandpasswords.png" alt="Accounts and Passwords Thumbnail">
<div class="card-img-overlay">
<span class="card-title moduleCardTitle" id='modTitle10'>
<!-- <span class="badge badge-primary newTag">NEW!</span>   --> Accounts and Passwords
</span>
</div>
</div>
</a>
<div class="card-body">
<span class="card-text">
Learn how to create an account on social media and
practice how to protect your privacy online by creating a safe
username and a strong password.
</span>
<a id='modLink10' aria-labelledby='modLink10 modTitle10' href="https://app.socialmediatestdrive.org/intro/accounts" class="card-text" target="_none">
Click here to start</a>
<span class="card-text">
the module.
</span>
<br>
<br>
</div>
</div>
</div>
<!-- The Ups and Downs of Social Media -->
<div class="tempModuleColumns col-lg-4 col-md-6 col-sm-12">
<div class="card" style="width: 18rem;">
<a href="https://app.socialmediatestdrive.org/intro/esteem" class="card-text" target="_none">
<div class="container cardImgContainer">
<img class="card-img-top" src="img/esteem.png" alt="Ups and Downs of Social Media Thumbnail">
<div class="card-img-overlay">
<span class="card-title moduleCardTitle" id='modTitle11'>
<!-- <span class="badge badge-primary newTag">NEW!</span>   --> The Ups and Downs of Social Media
</span>
</div>
</div>
</a>
<div class="card-body">
<span class="card-text">
Reflect on how social media can make you feel and
learn how to use social media in a positive and balanced way.
</span>
<a id='modLink11' aria-labelledby='modLink11 modTitle11' href="https://app.socialmediatestdrive.org/intro/esteem" class="card-text" target="_none">
Click here to start</a>
<span class="card-text">
the module.
</span>
<br>
<br>
<p class="card-text-csAlignment">
Aligned with Common Sense Education's Digital Citizenship lesson: <span id='csTitle11'>My Social Media Life.</span>
<a id='csLink11' aria-labelledby='csLink11 csTitle11' href="https://www.commonsense.org/education/digital-citizenship/lesson/my-social-media-life" target="_blank">
Learn more...
</a>
</p>
</div>
</div>
</div>
<!-- The Ups and Downs of Social Media -->
<div class="tempModuleColumns col-lg-4 col-md-6 col-sm-12">
<div class="card" style="width: 18rem;">
<a href="https://app.socialmediatestdrive.org/intro/advancedlit" class="card-text" target="_none">
<div class="container cardImgContainer">
<img class="card-img-top" src="img/advancednews.png" alt="Responding to Breaking News Thumbnail">
<div class="card-img-overlay">
<span class="card-title moduleCardTitle" id='modTitle12'>
<!-- <span class="badge badge-primary newTag">NEW!</span>   --> Responding to Breaking News!
</span>
</div>
</div>
</a>
<div class="card-body">
<span class="card-text">
Learn how to react to breaking news on social media
and practice strategies for identifying reliable news online.
</span>
<a id='modLink12' aria-labelledby='modLink12 modTitle12' href="https://app.socialmediatestdrive.org/intro/advancedlit" class="card-text" target="_none">
Click here to start</a>
<span class="card-text">
the module.
</span>
<br>
<br>
<p class="card-text-csAlignment">
Aligned with Common Sense Education's Digital Citizenship lesson: <span id='csTitle12'>This Just In!</span>
<a id='csLink12' aria-labelledby='csLink12 csTitle12' href="https://www.commonsense.org/education/digital-citizenship/lesson/this-just-in" target="_blank">
Learn more...
</a>
</p>
</div>
</div>
</div>
<!-- Is It Private Information? -->
<div class="tempModuleColumns col-lg-4 col-md-6 col-sm-12">
<div class="card" style="width: 18rem;">
<a href="https://app.socialmediatestdrive.org/intro/safe-posting" class="card-text" target="_none">
<div class="container cardImgContainer">
<img class="card-img-top" src="img/privateinfo.png" alt="Private Information Thumbnail">
<div class="card-img-overlay">
<span class="card-title moduleCardTitle" id='modTitle1'>
Is It Private Information?