-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1079 lines (855 loc) · 35.8 KB
/
index.html
File metadata and controls
1079 lines (855 loc) · 35.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
<!DOCTYPE html>
<!--
Alpha by HTML5 UP
html5up.net | @n33co
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>NHS Clubs</title>
<meta content="text/html; charset=utf-8" http-equiv="content-type">
<meta content="" name="description">
<meta content="" name="keywords"><!--[if lte IE 8]><script src="css/ie/html5shiv.js"></script><![endif]-->
<script src="js/jquery.min.js"></script>
<script src="js/jquery.dropotron.min.js"></script>
<script src="js/jquery.scrollgress.min.js"></script>
<script src="js/skel.min.js"></script>
<script src="js/skel-layers.min.js"></script>
<script src="js/init.js"></script><noscript>
<link href="css/skel.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href="css/style-wide.css" rel="stylesheet"></noscript><!--[if lte IE 8]><link rel="stylesheet" href="css/ie/v8.css" /><![endif]-->
</head>
<body class="landing">
<!-- Header -->
<header class="alt" id="header">
<a href="http://newtown.nhs.schooldesk.net/" target="_blank"><img src="images/Nighthawk.png" width="50" height="50" alt=""/></a>
<nav id="nav">
<ul>
<li>
<a class="icon fa-angle-down" href="">Clubs</a>
<ul>
<li><a href="">Language Clubs</a>
<ul>
<li>
<a href="#French-Club">French Club</a>
</li>
<li>
<a href="#Latin-Club">Latin Club</a>
</li>
<li>
<a href="#Spanish">Spanish Club</a>
</li>
<li>
<a href="#Italian">Italian Club</a>
</li>
</ul>
</li>
<li>
<a href="">Music</a>
<ul>
<li>
<a href="#Asking-for-Treble">Asking for Treble</a>
</li>
<li>
<a href="#Hemma">Hemma</a>
</li>
<li>
<a href="#XY">XY Chromotones</a>
</li>
</ul>
</li>
<li>
<a href="#AC4P">AC4P</a>
</li>
<li>
<a href="#Animal-Concerns">Animal Concerns</a>
</li>
<li>
<a href="#Anime-Club">Anime Club</a>
</li>
<li>
<a href="#Art-Club">Art Club</a>
</li>
<li>
<a href="#Baking-without-Boundaries">Baking w/o Boundaries</a>
</li>
<li>
<a href="#Book-Club">Book Club</a>
</li>
<li>
<a href="#Chess-Club">Chess Club</a>
</li>
<li>
<a href="#Environmental-Club">Environmental Club</a>
</li>
<li>
<a href="#Film-Club">Film Production Club</a>
</li>
<li>
<a href="#Feminism">Gender Equality</a>
</li>
<li>
<a href="#Improv-Club">Improv Club</a>
</li>
<li>
<a href="#Global-Voice">Global Voice</a>
</li>
<li>
<a href="#Intramurals">Intramurals</a>
</li>
<li>
<a href="#Interact">Interact</a>
</li>
<li>
<a href="#Milk-Cookies">Milk & Cookies</a>
</li>
<li>
<a href="#Meditation">Meditation Club</a>
</li>
<li>
<a href="#Nice">Nice Club</a>
</li>
<li>
<a href="#Paintball">Paintball Club</a>
</li>
<li>
<a href="#Peer-Leadership">Peer Leadership</a>
</li>
<li>
<a href="#Peer-Mediation">Peer Mediation</a>
</li>
<li>
<a href="#3D">3D Printer Club</a>
</li>
<li>
<a href="#Quiz-Bowl">Quiz Bowl</a>
</li>
<li>
<a href="#Roast">Roast Magazine</a>
</li>
<li>
<a href="#Reach-Out">Reach out</a>
</li>
<li>
<a href="#SADD">S.A.D.D.</a>
</li>
<li>
<a href="#School-Based-Mentoring">School Mentoring</a>
</li>
<li>
<a href="#Science-Mentor">Science Mentor</a>
</li>
<li>
<a href="#Student-Government">Student Gov.</a>
</li>
<li>
<a href="#Stock-Market">Stock Market Club</a>
</li>
<li>
<a href="#Tabletop">Tabletop Gaming</a>
</li>
<li>
<a href="#Leo">Leo Club</a>
</li>
<li>
<a href="#Forestry">Forestry Club</a>
</li>
<li>
<a href="#Fencing">Fencing Club</a>
</li>
</ul>
</li>
<li>
<a class="icon fa-angle-down" href="">Teams</a>
<ul>
<li>
<a href="#Debate">Debate Team</a>
</li>
<li>
<a href="#Math-Team">Math Team</a>
</li>
<li>
<a href="#Science-Bowl">Science Bowl Team</a>
</li>
<li>
<a href="#Tech-Team">Technology Team</a>
</li>
</ul>
</li>
<li>
<a class="icon fa-angle-down" href="">Organizations</a>
<ul>
<li>
<a href="#Best-Buddies">Best Buddies</a>
</li>
<li>
<a href="#Gay-Straight">Gay Straight Alliance</a>
</li>
<li>
<a href="#National-Honor-Society">National Honor Society</a>
</li>
<li>
<a href="#Hawks-Honor-Association">Hawks Honors Assoc.</a>
</li>
<li>
<a href="#DECA">DECA</a>
</li>
<li>
<a href="#Future-Teachers">Future Teachers</a>
</li>
</ul>
</li>
<li>
<a class="icon fa-angle-down" href="">Class Council</a>
<ul>
<li>
<a href="#2015">Class of 2015</a>
</li>
<li>
<a href="#2016">Class of 2016</a>
</li>
<li>
<a href="#2017">Class of 2017</a>
</li>
<li>
<a href="#2018">Class of 2018</a>
</li>
</ul>
</li>
</ul>
</nav>
</header><!-- Banner -->
<section id="banner"></section><!-- Main -->
<section class="container" id="main">
<div class="row">
<div class="6u 12u(narrower)">
<section class="box special" id="2015">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Class of 2015 Council</h3>
<ul class="alt">
<li><strong>Adviser:</strong> <a href="mailto:EdwardsJ@newtown.k12.ct.us">Jason Edwards</a> & <a href="mailto:frankling@newtown.k12.ct.us">Gary Franklin</a></li>
<li><strong>Student Leaders:</strong> Anna Baxter, Mary Kate Sandler, Anita Luxkaranayagam</li>
<li><strong>Meeting Place and Time:</strong> B146 Tuesdays 6:50-7:15 AM</li>
</ul>
<ul class="icons">
<li>
<a class="icon fa-twitter" href="https://twitter.com/nighthawks2015"><span class="label">Twitter</span></a>
</li>
</ul>
</section>
<section class="box special" id="2016">
<span class="image featured"><img alt="" src="images/Class of 2016.jpg"></span>
<h3>Class of 2016 Council</h3>
<ul class="alt">
<li><strong>Adviser:</strong> <a href="mailto:boaa@newtown.k12.ct.us">Alixandra Boa</a> & <a href="mailto:DiazJ@newtown.k12.ct.us">Joanna Diaz</a></li>
<li><strong>Meeting Place and Time:</strong> B233 Wednesdays @ 2:10</li>
</ul>
<ul class="icons">
<li>
<a class="icon fa-twitter" href="https://twitter.com/newtown2016"><span class="label">Twitter</span></a>
</li>
</ul>
</section>
</div>
<div class="6u 12u(narrower)">
<section class="box special" id="2017">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Class of 2017 Council</h3>
<ul class="alt">
<li><strong>Adviser:</strong> <a href="mailto:linfantee@newtown.k12.ct.us">Elizabeth Linfante</a> & <a href="mailto:vegan@newtown.k12.ct.us">Nicole Vega</a></li>
<li><strong>Student Leaders:</strong> Pres. Kevin Arthur, VP Jonathon Paez, Treas. Dylan Lew, Secretary Lucille Helgren</li>
<li><strong>Meeting Place and Time:</strong> A205 Tuesday 6:50am – 7:15am</li>
</ul>
<ul class="icons">
<li>
<a class="icon fa-twitter" href="https://twitter.com/classof2017"><span class="label">Twitter</span></a>
</li>
</ul>
</section>
<section class="box special" id="2018">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Class of 2018 Council</h3>
<ul class="alt">
<li><strong>Adviser:</strong> <a href="mailto:Brants@newtown.k12.ct.us">Sara Brant</a> & <a href="mailto:Thorntond@newtown.k12.ct.us">Dimitri Thornton</a></li>
<li><strong>Student Leaders:</strong> Michael Arthur, Carson Miller, Bridget Morrissey, Janyce Toth, Kira Smith</li>
<li><strong>Meeting Place and Time:</strong> F120 Tuesdays @ 2:10-3:00</li>
</ul>
</section>
</div>
</div>
</section>
<section class="box special" id=""></section>
<section class="container" id="main">
<div class="row">
<div class="6u 12u(narrower)">
<section class="box special" id="Best-Buddies">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Best Buddies</h3>
<ul class="alt">
<li><strong>Adviser:</strong> <a href="mailto:GonskiJ@newtown.k12.ct.us">Jill Gonski</a> & <a href="mailto:RiccioM@newtown.k12.ct.us">Mimi Riccio</a></li>
<li><strong>Student Leaders:</strong> Rachel Crosby, Ali Morrill, Kayla Kordish, Nick Roche, Dani Mola, Julie Smith, Kyle Stubbs and Owen Gray</li>
<li><strong>Meeting Place and Time:</strong> A113 or Cafetorium Thursday 2-3:00</li>
</ul>
<ul class="icons">
<li>
<a class="icon fa-twitter" href="https://twitter.com/bestbuddiesnhs"><span class="label">Twitter</span></a>
</li>
</ul>
</section>
<section class="box special" id="National-Honor-Society">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>National Honor Society</h3>
<ul class="alt">
<li><strong>Adviser:</strong> <a href="mailto:BrantT@newtown.k12.ct.us">Tom Brant</a></li>
<li><strong>Student Leaders:</strong> Pres. Anita Luxkaranayagam VP: Emily Campbell</li>
<li><strong>Meeting Place and Time:</strong> Varies b/w LectureHall/Cafetorium 6:30-7:20 AM; 12:15-1 PM</li>
</ul>
<ul class="icons">
<li>
<a class="icon fa-twitter" href="https://twitter.com/newtown_nhs"><span class="label">Twitter</span></a>
</li>
</ul>
</section>
<section class="box special" id="DECA">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>DECA</h3>
<ul class="alt">
<li><strong>Adviser:</strong> V. SHEEN, J. SWANN</li>
<li><strong>Student Leaders:</strong> John Carlson, Mike Stierle, Forrest Weatherby, Brian Raab, Connor Lemay, Pat Briscoe, Liam McNichols, Connery Mayer</li>
<li><strong>Meeting Place and Time:</strong> A112 Thursday 1st and 3rdof every month 2:05-3:00</li>
</ul>
<ul class="icons">
<li>
<a class="icon fa-twitter" href="https://twitter.com/newtown_deca"><span class="label">Twitter</span></a>
</li>
</ul>
</section>
</div>
<div class="6u 12u(narrower)">
<section class="box special" id="Gay-Straight">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Gay Straight Alliance</h3>
<ul class="alt">
<li><strong>Adviser:</strong> <a href="mailto:EnglishK@newtown.k12.ct.us">Kristin English</a> & <a href="mailto:RovelloJ@newtown.k12.ct.us">Jim Rovello</a></li>
<li><strong>Student Leaders:</strong> President: Nikole Giovannone Vice President: Ellie Nikitchyuk Secretary: Lilly Fulmer</li>
<li><strong>Meeting Place and Time:</strong> B232 Wednesday 2:15-3:00</li>
</ul>
</section>
<section class="box special" id="Hawks-Honor-Association">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Hawks Honors Association</h3>
<ul class="alt">
<li><strong>Adviser:</strong> <a href="mailto:HoagJ@newtown.k12.ct.us">Jennifer Hoag</a></li>
<li><strong>Student Leaders:</strong> "President: Jessica Nguyen VP: Brooke Hadgraft"</li>
<li><strong>Meeting Place and Time:</strong> F120 Thursday once a month 2:10</li>
</ul>
<ul class="icons">
<li>
<a class="icon fa-twitter" href="https://twitter.com/NHS_HAWKSHonors"><span class="label">Twitter</span></a>
</li>
</ul>
</section>
<section class="box special" id="Future-Teachers">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Future Teachers of America</h3>
<ul class="alt">
<li><strong>Adviser:</strong> <a href="mailto:VioletteK@newtown.k12.ct.us">Kristin Violette</a></li>
<li><strong>Student Leaders:</strong> President: Katie Barrett</li>
<li><strong>Meeting Place and Time:</strong> A104 every other Friday 2:05-3:00</li>
</ul>
</section>
</div>
</div>
</section>
<section class="box special" id=""></section>
<section class="container" id="main">
<div class="row">
<div class="6u 12u(narrower)">
<section class="box special" id="Debate">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Debate Team</h3>
<ul class="alt">
<li><strong>Adviser:</strong> <a href="mailto:SaladinL@newtown.k12.ct.us">Larry Saladin</a></li>
<li><strong>Student Leaders:</strong> Kustav Mitra, Baxter Hankin</li>
<li><strong>Meeting Place and Time:</strong> F122 Wednesday 2:00-3:30</li>
</ul>
</section>
<section class="box special" id="Science-Bowl">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Science Bowl Team</h3>
<ul class="alt">
<li><strong>Adviser:</strong> C. CARLEY</li>
<li><strong>Student Leaders:</strong> Trevor Nelson, Nathyn Horvath, Scott Alexander</li>
<li><strong>Meeting Place and Time:</strong> F116 TBD, 2:15-3:30</li>
</ul>
</section>
</div>
<div class="6u 12u(narrower)">
<section class="box special" id="Math-Team">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Math Team</h3>
<ul class="alt">
<li><strong>Adviser:</strong> K. BREMER, K. SHERMAN</li>
<li><strong>Student Leaders:</strong> Abigail Kohler</li>
<li><strong>Meeting Place and Time:</strong> F124 Wednesday 2:15-3:15 or Tuesdays as needed</li>
</ul>
</section>
<section class="box special" id="Tech-Team">
<span class="image featured"><img alt="" src="images/Tech-Team.jpg"></span>
<h3>Technology Team</h3>
<ul class="alt">
<li>
<strong>Adviser:</strong> <a href="mailto:stamms@newtown.k12.ct.us">Staci Stamm</a>
</li>
<li><strong>Student Leaders:</strong> Luke Gaynor, Devin Matte</li>
<li><strong>Meeting Place and Time:</strong> C080 Tuesdays & Thursdays 2:05</li>
</ul>
<ul class="icons">
<li>
<a class="icon fa-globe" href="http://nhstech.us/"><span class="label">Website</span></a>
</li>
<li>
<a class="icon fa-twitter" href="https://twitter.com/ntvtechteam"><span class="label">Twitter</span></a>
</li>
</ul>
</section>
</div>
</div>
</section>
<section class="box special" id=""></section>
<section class="container" id="main">
<div class="row">
<div class="6u 12u(narrower)">
<section class="box special" id="AC4P">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>AC4P (Actively Caring for People)</h3>
<ul class="alt">
<li> <strong>Adviser:</strong> <a href="mailto:VioletteK@newtown.k12.ct.us">Kristin Violette</a> & <a href="mailto:SheridanL@newtown.k12.ct.us">Lisa Sheridan</a> </li>
<li><strong>Student Leaders:</strong> Katie Barrett and Kate Fallon</li>
<li><strong>Meeting Place and Time:</strong> Every other Tuesday at 2:15-3:00 in A104 or A220</li>
</ul>
<ul class="icons">
<li>
<a class="icon fa-twitter" href="https://twitter.com/ac4p_nhs"><span class="label">Twitter</span></a>
</li>
<li>
<a class="icon fa-globe" href="http://bit.ly/AC4PNHS"><span class="label">Website</span></a>
</li>
</ul>
</section>
<section class="box special" id="Anime-Club">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Anime Club</h3>
<ul class="alt">
<li><strong>Adviser:</strong> <a href="mailto:hoaglandl@newtown.k12.ct.us">Lori Hoagland</a></li>
<li><strong>Student Leaders:</strong> Faith Pereira</li>
<li><strong>Meeting Place and Time:</strong> F120, 2nd and 4th Tuesday of the month</li>
</ul>
</section>
<section class="box special" id="Asking-for-Treble">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Asking for Treble (Girls A Cappella Group)</h3>
<ul class="alt">
<li><strong>Adviser:</strong> <a href="mailto:MatsonJ@newtown.k12.ct.us">Jane Matson</a></li>
<li><strong>Student Leaders:</strong> Juliana Koziol, Kelsey Nicholson</li>
<li><strong>Meeting Place and Time:</strong> C184A Ensemble Mondays & Wednesdays 2:15 - 3:30</li>
</ul>
</section>
<section class="box special" id="Chess-Club">
<span class="image featured"><img alt="" src="images/Chess-Club.jpg"></span>
<h3>Chess Club</h3>
<ul class="alt">
<li><strong>Adviser: </strong><a href="mailto:MalaryS@newtown.k12.ct.us">Dr. Steve Malary</a></li>
<li><strong>Student Leaders:</strong> Hannah Bartlett, Zach Weiland</li>
<li><strong>Meeting Place and Time:</strong> A203 Thursday 2:05-3:00</li>
</ul>
</section>
<section class="box special" id="Feminism">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Feminism/Gender Equality</h3>
<ul class="alt">
<li><strong>Adviser:</strong> <a href="mailto:parsonss@newtown.k12.ct.us">Sayward Parsons</a></li>
<li><strong>Student Leaders:</strong> Astrid Sundberg, Lily Holmes, Noelle Veillette</li>
<li><strong>Meeting Place and Time:</strong> B236 every other Thursday 2:05-3:00</li>
</ul>
<ul class="icons">
<li>
<a class="icon fa-twitter" href="https://twitter.com/nhsge"><span class="label">Twitter</span></a>
</li>
</ul>
</section>
<section class="box special" id="Global-Voice">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Global Voice</h3>
<ul class="alt">
<li><strong>Adviser:</strong> <a href="mailto:DeJulioT@newtown.k12.ct.us">Timothy DeJulio</a></li>
<li><strong>Meeting Place and Time:</strong> B150 1st & 3rd Tuesday 2:10</li>
</ul>
</section>
<section class="box special" id="Hemma">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Hemma (High School Elementary Musicianship Mentoring Association)</h3>
<ul class="alt">
<li><strong>Adviser:</strong> <a href="mailto:CarleyC@newtown.k12.ct.us">Christopher Carley</a></li>
<li><strong>Student Leaders:</strong> Richie Sadlon, Julia Preszler, Nathyn Horvath, Emma Tallon, Spohie Kennen.</li>
<li><strong>Meeting Place and Time:</strong> F116 TBD, 2:15-3:15</li>
</ul>
</section>
<section class="box special" id="Interact">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Interact</h3>
<ul class="alt">
<li><strong>Adviser:</strong> J. METZ</li>
<li><strong>Meeting Place and Time:</strong> B262 Every 3rd Thursday 2:10-3:00</li>
</ul>
</section>
<section class="box special" id="Meditation">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Meditation Club</h3>
<ul class="alt">
<li><strong>Adviser:</strong> C. BRAINARD</li>
<li><strong>Student Leaders:</strong> Chris Koch</li>
<li><strong>Meeting Place and Time:</strong> Dance Studio Thursdays 2:05-3:05</li>
</ul>
</section>
<section class="box special" id="Paintball">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Paintball Club</h3>
<ul class="alt">
<li><strong>Adviser:</strong> J. ROVELLO</li>
<li><strong>Student Leaders:</strong> President: Jon Vaughn, Co-President: Nick Snyder</li>
<li><strong>Meeting Place and Time:</strong> B238 Friday 2:10-2:40</li>
</ul>
</section>
<section class="box special" id="Peer-Mediation">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Peer Mediation</h3>
<ul class="alt">
<li><strong>Adviser:</strong> <a href="mailto:HoagJ@newtown.k12.ct.us">Jennifer Hoag</a> & <a href="mailto:TylerS@newtown.k12.ct.us">Suzanne Tyler</a></li>
<li><strong>Student Leaders:</strong> Annie Beier, Emma Briscoe</li>
<li><strong>Meeting Place and Time:</strong> As needed</li>
</ul>
</section>
<section class="box special" id="Quiz-Bowl">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Quiz Bowl</h3>
<ul class="alt">
<li><strong>Adviser:</strong> J. KAPLAN</li>
<li><strong>Student Leaders:</strong> Brandon Smith, Michael Lally, Jeff Haylon</li>
<li><strong>Meeting Place and Time:</strong> B230 Fridays 2:10-3:00</li>
</ul>
<ul class="icons">
<li>
<a class="icon fa-twitter" href="https://twitter.com/mskaplannhs"><span class="label">Twitter</span></a>
</li>
</ul>
</section>
<section class="box special" id="Reach-Out">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Reach Out</h3>
<ul class="alt">
<li><strong>Adviser:</strong> <a href="mailto:EkmanE@newtown.k12.ct.us">Eric Ekman</a></li>
<li><strong>Student Leaders:</strong> President - C.J. Landgrebe Vice President - Elise Johnson</li>
<li><strong>Meeting Place and Time:</strong> A214, Tuesday, 2:10-3 PM</li>
</ul>
</section>
<section class="box special" id="School-Based-Mentoring">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>School Based Mentoring</h3>
<ul class="alt">
<li><strong>Adviser:</strong> <a href="mailto:HoagJ@newtown.k12.ct.us">Jennifer Hoag</a> & <a href="mailto:TylerS@newtown.k12.ct.us">Suzanne Tyler</a></li>
<li><strong>Meeting Place and Time:</strong> As needed</li>
</ul>
</section>
<section class="box special" id="Science-Mentor">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Science Mentor Club</h3>
<ul class="alt">
<li><strong>Adviser:</strong> Darryl Nicholson</li>
<li><strong>Student Leaders:</strong> Baxter Hankin</li>
<li><strong>Meeting Place and Time:</strong> A200 Thursday 2:15</li>
</ul>
</section>
<section class="box special" id="Stock-Market">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Stock Market Club</h3>
<ul class="alt">
<li><strong>Adviser:</strong> J. TOLSON</li>
<li><strong>Student Leaders:</strong> Peter Winans, Matt Davis</li>
<li><strong>Meeting Place and Time:</strong> Guidance conference rooms; day varies 2-2:30</li>
</ul>
</section>
<section class="box special" id="Tabletop">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Table Top Games Club</h3>
<ul class="alt">
<li><strong>Adviser:</strong> Darryl Nicholson</li>
<li><strong>Student Leaders:</strong> Joseph Elliott</li>
<li><strong>Meeting Place and Time:</strong> A207 Alternate Tuesdays and Wednesdays 2:10</li>
</ul>
<ul class="icons">
<li>
<a class="icon fa-twitter" href="https://twitter.com/NHStabletop"><span class="label">Twitter</span></a>
</li>
</ul>
</section>
<section class="box special" id="XY">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>XY Chromotones</h3>
<ul class="alt">
<li><strong>Adviser:</strong> <a href="mailto:MatsonJ@newtown.k12.ct.us">Jane Matson</a></li>
<li><strong>Student Leaders:</strong> Kyle Watson</li>
<li><strong>Meeting Place and Time:</strong> C186 Mondays & Wednesdays 2:15-3:30</li>
</ul>
</section>
<section class="box special" id="Fencing">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Fencing Club</h3>
<ul class="alt">
<li><strong>Adviser:</strong> R. KIELY</li>
<li><strong>Student Leaders:</strong> President, <a href="mailto:yofungi42@gmail.com">Ian Villamil</a>
Vice Pres. Jake Wilson
Secretary, Sarah Bruno
Treasurer, Justice Zoto</li>
<li><strong>Meeting Place and Time:</strong> Every Tuesday in the Cafeteria 2:15-3:15</li>
</ul>
</section>
</div>
<div class="6u 12u(narrower)">
<section class="box special" id="Animal-Concerns">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Animals Concerns</h3>
<ul class="alt">
<li><strong>Adviser:</strong> <a href="mailto:ZandonellaL@newtown.k12.ct.us">Liza Zandonella</a></li>
<li><strong>Student Leaders:</strong> Anna Baxter</li>
<li><strong>Meeting Place and Time:</strong> LMC monthly, days vary 2:05-3:30</li>
</ul>
</section>
<section class="box special" id="Art-Club">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Art Club</h3>
<ul class="alt">
<li><strong>Adviser:</strong> <a href="mailto:PelligraC@newtown.k12.ct.us">Carol Pelligra</a></li>
<li><strong>Student Leaders:</strong> Halle Wilson</li>
<li><strong>Meeting Place and Time:</strong> C183 Tuesday 2:15-3:15</li>
</ul>
</section>
<section class="box special" id="Baking-without-Boundaries">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Baking Beyond Boundaries</h3>
<ul class="alt">
<li><strong>Adviser:</strong> <a href="mailto:hoaglandl@newtown.k12.ct.us">Lori Hoagland</a></li>
<li><strong>Student Leaders:</strong> Rachel Goldman and Liza Tananbaum</li>
<li><strong>Meeting Place and Time:</strong> Culinary Bakeshop, 2nd & 4th Tuesday of the month.</li>
</ul>
</section>
<section class="box special" id="Book-Club">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Book Club</h3>
<ul class="alt">
<li><strong>Adviser:</strong> <a href="mailto:ZandonellaL@newtown.k12.ct.us">Liza Zandonella</a> & <a href="mailto:CotroneoT@newtown.k12.ct.us">Tiffany Cotroneo</a></li>
<li><strong>Student Leaders:</strong> Abigail Kohler, Eve Passman</li>
<li><strong>Meeting Place and Time:</strong> LMC Monthly days vary 2:05 - 3:00</li>
</ul>
<ul class="icons">
<li>
<a class="icon fa-twitter" href="https://twitter.com/newtownhslmc"><span class="label">Twitter</span></a>
</li>
</ul>
</section>
<section class="box special" id="Environmental-Club">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Environmental Club</h3>
<ul class="alt">
<li><strong>Adviser:</strong> <a href="mailto:Baumgartnerk@newtown.k12.ct.us">Karolyn Baumgartner</a> & <a href="mailto:RamseyS@newtown.k12.ct.us">Stephanie Ramsey</a></li>
<li><strong>Student Leaders:</strong> Sophia Devivo, Kayleigh Granville, Sierra Toomey, Forest Speed</li>
<li><strong>Meeting Place and Time:</strong> A202 Tuesdays 2:10 - 3:10</li>
</ul>
<ul class="icons">
<li>
<a class="icon fa-twitter" href="https://twitter.com/NHSEnviroClub"><span class="label">Twitter</span></a>
</li>
</ul>
</section>
<section class="box special" id="Film-Club">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Film Production Club </h3>
<ul class="alt">
<li><strong>Adviser:</strong> <a href="mailto:stamms@newtown.k12.ct.us">Staci Stamm</a></li>
<li><strong>Student Leaders:</strong> President –Boris Kudlac Vice President – Brandon Johnson</li>
<li><strong>Meeting Place and Time:</strong> C080 Wednesday 2:05-3:30 PM</li>
</ul>
<ul class="icons">
<li>
<a class="icon fa-twitter" href="https://twitter.com/FilmClubNHS"><span class="label">Twitter</span></a>
</li>
</ul>
</section>
<section class="box special" id="French-Club">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>French Club</h3>
<ul class="alt">
<li><strong>Adviser:</strong> JEN DAVIDSON</li>
<li><strong>Student Leaders:</strong> Lydia Field Natalie Zimmerman</li>
<li><strong>Meeting Place and Time:</strong> B252 every other Thursday</li>
</ul>
</section>
<section class="box special" id="Improv-Club">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Improv Club</h3>
<ul class="alt">
<li><strong>Adviser:</strong> K. ENGLISH</li>
<li><strong>Student Leaders:</strong> President – Cal Creeden Vice President – Sean Dalton Secretary – Stephen Haas</li>
<li><strong>Meeting Place and Time:</strong> B232 Thursday 2:05-3:00</li>
</ul>
</section>
<section class="box special" id="Intramurals">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Intramurals</h3>
<ul class="alt">
<li><strong>Adviser:</strong> B. NICHOLS</li>
<li><strong>Student Leaders:</strong> Adam Manes</li>
<li><strong>Meeting Place and Time:</strong> Field Hockey Field or Tennis Courts, Fridays 2:10-3:00</li>
</ul>
</section>
<section class="box special" id="Latin-Club">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Latin Club</h3>
<ul class="alt">
<li><strong>Adviser:</strong> JEN HUETTNER</li>
<li><strong>Student Leaders:</strong> Ashley Gong</li>
<li><strong>Meeting Place and Time:</strong> B254 Wednesdays 2:05-3:00PM</li>
</ul>
</section>
<section class="box special" id="Milk-Cookies">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Milk & Cookies</h3>
<ul class="alt">
<li><strong>Adviser:</strong> Brett Nichols</li>
<li><strong>Meeting Place and Time:</strong> B150 Thursday 2:10-3:00</li>
</ul>
</section>
<section class="box special" id="Nice">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Nice Club/AFS Club</h3>
<ul class="alt">
<li><strong>Adviser:</strong> <a href="mailto:DeJulioT@newtown.k12.ct.us">Timothy DeJulio</a> & <a href="mailto:WardE@newtown.k12.ct.us">Elizabeth Ward</a></li>
<li><strong>Meeting Place and Time:</strong> B150 1st & 3rd Tuesday 2:10</li>
</ul>
</section>
<section class="box special" id="">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Peer Leadership</h3>
<ul class="alt">
<li><strong>Adviser:</strong> V. SHEEN & Brett Nichols</li>
<li><strong>Student Leaders:</strong> Connery Mayer & Jason Ferrari</li>
<li><strong>Meeting Place and Time:</strong> B150 Monday 3rd & 4th of each month 2:10-3:00</li>
</ul>
</section>
<section class="box special" id="">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>3D Printer Club</h3>
<ul class="alt">
<li><strong>Adviser:</strong> Erik Holst-Grubbe</li>
<li><strong>Student Leaders:</strong> Dave Corsi</li>
<li><strong>Meeting Place and Time:</strong> A114 Wednesdays 2:00</li>
</ul>
</section>
<section class="box special" id="">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Roast: NHS'S Literary Magazine</h3>
<ul class="alt">
<li><strong>Adviser:</strong> S. PARSONS</li>
</ul>
</section>
<section class="box special" id="">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>S.A.D.D. (Students Against Destructive Decisions)</h3>
<ul class="alt">
<li><strong>Adviser:</strong> C SKOLAS, J BLANCHARD</li>
<li><strong>Meeting Place and Time:</strong> C181 Tuesday 2:10</li>
</ul>
</section>
<section class="box special" id="">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Spanish Club</h3>
<ul class="alt">
<li><strong>Adviser:</strong> J. KENNY</li>
<li><strong>Student Leaders:</strong> Kiera Elkow, Elisha Wilson</li>
<li><strong>Meeting Place and Time:</strong> B258 Friday 2:15-3:15</li>
</ul>
</section>
<section class="box special" id="">
<span class="image featured"><img alt="" src="images/pic02.jpg"></span>
<h3>Student Government</h3>
<ul class="alt">
<li><strong>Adviser:</strong> J. DELLASALA & <a href="mailto:SaladinL@newtown.k12.ct.us">Larry Saladin</a></li>
<li><strong>Student Leaders:</strong> President - Julia Trudell, VP - Siena Cicarelli, Treasurer - Vikram Makayee, Secretary - Eli Klorczyk</li>
<li><strong>Meeting Place and Time:</strong> B150 Wednesday 5:30-6:30</li>
</ul>
<ul class="icons">
<li>