-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconstitution.html
More file actions
596 lines (508 loc) · 32.6 KB
/
Copy pathconstitution.html
File metadata and controls
596 lines (508 loc) · 32.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Constitution - UofT STAR</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
</head>
<body>
<!-- Global Stars Background -->
<div class="stars-background"></div>
<!-- Navigation -->
<nav class="navbar">
<div class="nav-container">
<div class="nav-logo">
<img src="Images/UTSTAR_logo.png" alt="UofT STAR Logo" class="logo-img">
<span class="logo-text">UofT STAR</span>
</div>
<ul class="nav-menu">
<li class="nav-item">
<a href="index.html" class="nav-link">Home</a>
</li>
<li class="nav-item">
<a href="about.html" class="nav-link">About</a>
</li>
<li class="nav-item nav-dropdown">
<a href="constitution.html" class="nav-link active">Constitution <i class="fas fa-chevron-down"></i></a>
<div class="dropdown-menu">
<div class="dropdown-content">
<div class="dropdown-columns">
<div class="dropdown-column">
<a href="#article-1" class="dropdown-link">1. Name and Purpose</a>
<a href="#article-2" class="dropdown-link">2. Membership & Fee</a>
<a href="#article-3" class="dropdown-link">3. Rights of Members</a>
<a href="#article-4" class="dropdown-link">4. Executive Committee</a>
<a href="#article-5" class="dropdown-link">5. Exec Composition</a>
<a href="#article-6" class="dropdown-link">6. Elections</a>
</div>
<div class="dropdown-column">
<a href="#article-7" class="dropdown-link">7. Finances</a>
<a href="#article-8" class="dropdown-link">8. Meetings</a>
<a href="#article-9" class="dropdown-link">9. Termination</a>
<a href="#article-10" class="dropdown-link">10. Safety</a>
<a href="#article-11" class="dropdown-link">11. Amendments</a>
<a href="#" class="dropdown-link back-to-toc" onclick="scrollToTOC()">📋 Table of Contents</a>
</div>
</div>
</div>
</div>
</li>
<li class="nav-item">
<a href="index.html#contact" class="nav-link">Contact</a>
</li>
<li class="nav-item">
<a href="trivia.html" class="nav-link">Trivia</a>
</li>
</ul>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</div>
</nav>
<!-- Animated Stars Background -->
<div class="stars-container">
<div class="stars"></div>
<div class="stars2"></div>
<div class="stars3"></div>
</div>
<!-- Hero Section -->
<section class="hero constitution-hero">
<div class="hero-background"></div>
<div class="hero-content">
<div class="container">
<h1 class="hero-title">Constitution of "University of Toronto Student Team for Amateur Rocketry"</h1>
<p class="hero-subtitle">Our governing document and organizational principles</p>
<div class="hero-actions">
<a href="Constitution.pdf" class="btn btn-primary" target="_blank">
<i class="fas fa-file-pdf"></i>
Download PDF
</a>
</div>
</div>
</div>
</section>
<!-- Constitution Content -->
<section class="constitution-content">
<div class="container">
<!-- Table of Contents -->
<div class="constitution-nav">
<h3>Table of Contents</h3>
<ul class="constitution-toc">
<li><a href="#article-1">1. Name and Purpose</a></li>
<li><a href="#article-2">2. Membership and Membership Fee</a></li>
<li><a href="#article-3">3. Rights of Members</a></li>
<li><a href="#article-4">4. Executive Committee</a></li>
<li><a href="#article-5">5. Executive Committee Composition</a></li>
<li><a href="#article-6">6. Elections</a></li>
<li><a href="#article-7">7. Finances</a></li>
<li><a href="#article-8">8. Meetings</a></li>
<li><a href="#article-9">9. Termination of Membership</a></li>
<li><a href="#article-10">10. Safety</a></li>
<li><a href="#article-11">11. Amendments</a></li>
</ul>
</div>
<div class="document-wrapper">
<!-- Article 1 -->
<article class="constitution-article" id="article-1">
<h2 class="article-title">1. Article One – Name and Purpose</h2>
<div class="article-section">
<h3>1.1.</h3>
<p>The official name of the recognized student group is "University of Toronto Student Team for Amateur Rocketry"</p>
</div>
<div class="article-section">
<h3>1.2.</h3>
<p>The official acronym or abbreviation of the group is "UTSTAR"</p>
</div>
<div class="article-section">
<h3>1.3.</h3>
<p>The purpose, objectives, mission and/or mandate of the organization is for like-minded individuals to come together to produce unique hobby rocket systems, from thrust-vectoring vertical landing systems to intriguing multi-stage vehicles. Team members will get hand-on exposure to all stages of the rocketry design process, by designing and producing propulsion, structural, aerodynamic, and avionics components completely from scratch, and launching the finished product. Team membership may also include guest speaker seminars, and subject-related social opportunities.</p>
</div>
</article>
<!-- Article 2 -->
<article class="constitution-article" id="article-2">
<h2 class="article-title">2. Article Two – Membership and Membership Fee</h2>
<div class="article-section">
<h3>2.1.</h3>
<p>The group shall maintain a list of group members.</p>
</div>
<div class="article-section">
<h3>2.2.</h3>
<p>Voting membership is open to all registered students of the University of Toronto.</p>
</div>
<div class="article-section">
<h3>2.3.</h3>
<p>Voting membership is open only to registered students of the University of Toronto.</p>
</div>
<div class="article-section">
<h3>2.4.</h3>
<p>Non-voting membership is open to University of Toronto staff, faculty, alumni, and to persons from outside the University. Unless otherwise stated, non-voting members do not hold any rights awarded to voting members.</p>
</div>
<div class="article-section">
<h3>2.5.</h3>
<p>The membership fee will be $25 per year.</p>
</div>
</article>
<!-- Article 3 -->
<article class="constitution-article" id="article-3">
<h2 class="article-title">3. Article Three – Rights of Members</h2>
<div class="article-section">
<h3>3.1.</h3>
<p>All members may apply for a full refund of their membership fee within one (1) month of becoming a member.</p>
</div>
<div class="article-section">
<h3>3.2.</h3>
<p>All voting members have a right to attend all general meetings of members.</p>
</div>
<div class="article-section">
<h3>3.3.</h3>
<p>All voting members have a right to cast votes at all general meetings of members.</p>
</div>
<div class="article-section">
<h3>3.4.</h3>
<p>All voting members have a right to stand for election unless otherwise stated in this document.</p>
</div>
<div class="article-section">
<h3>3.5.</h3>
<p>All voting members have a right to cast votes in all group elections and referenda.</p>
</div>
<div class="article-section">
<h3>3.6.</h3>
<p>All voting members have a right to propose and vote on amendments to this constitution.</p>
</div>
<div class="article-section">
<h3>3.7.</h3>
<p>The rights prescribed in Article Three are not awarded to non-voting members as described in Article Two.</p>
</div>
</article>
<!-- Article 4 -->
<article class="constitution-article" id="article-4">
<h2 class="article-title">4. Article Four - Executive Committee</h2>
<div class="article-section">
<h3>4.1.</h3>
<p>The term for all positions on the Executive Committee shall be from September 1st to August 31st.</p>
</div>
<div class="article-section">
<h3>4.2.</h3>
<p>The Executive Committee shall be comprised of at least four (4) voting members.</p>
</div>
<div class="article-section">
<h3>4.3.</h3>
<p>All voting members of the Executive Committee must be currently registered students of the University of Toronto.</p>
</div>
<div class="article-section">
<h3>4.4.</h3>
<p>Non-voting members may hold only non-voting positions on the Executive Committee.</p>
</div>
<div class="article-section">
<h3>4.5.</h3>
<p>The maximum amount of non-voting positions on the Executive Committee shall be one (1) position or ten per cent (10%) of the positions on the Executive Committee, whichever is greatest.</p>
</div>
<div class="article-section">
<h3>4.6.</h3>
<p>Persons holding non-voting positions on the Executive Committee cannot serve as an officer, financial authority, signing authority, primary contact, or secondary contact.</p>
</div>
<div class="article-section">
<h3>4.7.</h3>
<p>No person may serve as a financial authority or signing authority for the group if they are currently serving as a financial authority or signing authority for another recognized student group at the University of Toronto.</p>
</div>
<div class="article-section">
<h3>4.8.</h3>
<p>The Executive may appoint Directors or Coordinators for various committees who do not hold executive decision-making authority and are not eligible to cast votes at meetings of the Executive Committee.</p>
</div>
</article>
<!-- Article 5 -->
<article class="constitution-article" id="article-5">
<h2 class="article-title">5. Article Five - Executive Committee Composition and Duties</h2>
<div class="article-section">
<h3>5.1. The President shall:</h3>
<div class="article-subsection">
<p><strong>5.1.1.</strong> Be eligible to cast votes at meetings of the Executive Committee, and may be tie-breaker vote, if required.</p>
<p><strong>5.1.2.</strong> Oversee the overall operations, management, finances, etc. of the group</p>
<p><strong>5.1.3.</strong> Serve as primary spokesperson for the group</p>
<p><strong>5.1.4.</strong> Hold signing and financial authority along with the Financial Lead (and Vice President, as delegate)</p>
<p><strong>5.1.5.</strong> Preside over meetings of the Executive Committee and/or members, as Chair</p>
<p><strong>5.1.6.</strong> Ensure a transition of office from one year to the next.</p>
<p><strong>5.1.7.</strong> Sign off on all finalized designs (i.e., propulsion, avionics, and structural) designs of a model rocket, and production outputs.</p>
<p><strong>5.1.8.</strong> Direct launch of model rocket(s).</p>
</div>
</div>
<div class="article-section">
<h3>5.2. The Vice President shall:</h3>
<div class="article-subsection">
<p><strong>5.2.1.</strong> Be eligible to cast votes at meetings of the Executive Committee</p>
<p><strong>5.2.2.</strong> Assume duties of the President in their absence, including signing & financial authority, as required.</p>
<p><strong>5.2.3.</strong> Ensure activities of the team comply with policies of the University of Toronto.</p>
<p><strong>5.2.4.</strong> Oversee organizational recruitment efforts.</p>
<p><strong>5.2.5.</strong> Coordinates the design process and oversees the production of amateur rockets.</p>
</div>
</div>
<div class="article-section">
<h3>5.3. The Safety/Testing Team Lead Shall:</h3>
<div class="article-subsection">
<p><strong>5.3.1.</strong> Oversee technical and personal safety of activities and members</p>
<p><strong>5.3.2.</strong> Flag any environmental and/or health hazards that may pose a threat to the safety of both the operation and the members</p>
<p><strong>5.3.3.</strong> Ensure that the group operates within the University's Health and Safety Policies.</p>
<p><strong>5.3.4.</strong> Contributes to design, construction and launch of model rockets, specifically when it comes to testing</p>
</div>
</div>
<div class="article-section">
<h3>5.4. The Propulsion Team Lead shall:</h3>
<div class="article-subsection">
<p><strong>5.4.1.</strong> Be eligible to cast votes at meetings of the Executive Committee</p>
<p><strong>5.4.2.</strong> Coordinates the design process and oversees the production of model rockets parts as relevant.</p>
<p><strong>5.4.3.</strong> Direct a launch of a model rocket in the absence of the President or Vice President.</p>
<p><strong>5.4.4.</strong> Leads the design, production, and testing of any propulsion system(s).</p>
</div>
</div>
<div class="article-section">
<h3>5.5. The Mechanical/Aerodynamics Team Lead Shall:</h3>
<div class="article-subsection">
<p><strong>5.5.1.</strong> Be eligible to cast votes at meetings of the Executive Committee</p>
<p><strong>5.5.2.</strong> Coordinates the design process and oversees the production of model rockets parts as relevant.</p>
<p><strong>5.5.3.</strong> Direct a launch of a model rocket in the absence of the President or Vice President.</p>
<p><strong>5.5.4.</strong> Leads the design, production, and testing of any structural or aerodynamics system.</p>
</div>
</div>
<div class="article-section">
<h3>5.6. The Avionics Team Lead Shall:</h3>
<div class="article-subsection">
<p><strong>5.6.1.</strong> Be eligible to cast votes at meetings of the Executive Committee</p>
<p><strong>5.6.2.</strong> Coordinates the design process and oversees the production of model rockets parts as relevant.</p>
<p><strong>5.6.3.</strong> Direct a launch of a model rocket in the absence of the President or Vice President.</p>
<p><strong>5.6.4.</strong> Leads the design, production, and testing of any avionics system.</p>
</div>
</div>
<div class="article-section">
<h3>5.7. The Finance Lead shall:</h3>
<div class="article-subsection">
<p><strong>5.7.1.</strong> Be eligible to cast votes at meetings of the Executive Committee</p>
<p><strong>5.7.2.</strong> Record all financial transactions of the group,</p>
<p><strong>5.7.3.</strong> Hold signing and financial authority along with the President (and Vice President)</p>
<p><strong>5.7.4.</strong> Maintain the group's budget of income and expenses</p>
<p><strong>5.7.5.</strong> Advise members on financial position of the group,</p>
<p><strong>5.7.6.</strong> Prepare an annual budget for the group.</p>
</div>
</div>
<div class="article-section">
<h3>5.8. The Media/Outreach Team Lead shall:</h3>
<div class="article-subsection">
<p><strong>5.8.1.</strong> Be eligible to cast votes at meetings of the Executive Committee</p>
<p><strong>5.8.2.</strong> Coordinate organizational recruitment efforts</p>
<p><strong>5.8.3.</strong> Serve a secondary spokesperson</p>
<p><strong>5.8.4.</strong> Lead the maintenance of the group website.</p>
<p><strong>5.8.5.</strong> Lead the design, creation and management of social media platforms and associated interactions.</p>
<p><strong>5.8.6.</strong> Coordinate social events.</p>
</div>
</div>
</article>
<!-- Article 6 -->
<article class="constitution-article" id="article-6">
<h2 class="article-title">6. Article Six – Elections</h2>
<div class="article-section">
<h3>6.1.</h3>
<p>All voting positions on the Executive Committee shall be filled through an annual election.</p>
</div>
<div class="article-section">
<h3>6.2.</h3>
<p>All voting group members shall be eligible to seek nomination to and cast a ballot for each voting position.</p>
</div>
<div class="article-section">
<h3>6.3.</h3>
<p>All non-voting group members shall be eligible to seek nomination only for non-voting positions on the Executive Committee.</p>
</div>
<div class="article-section">
<h3>6.4.</h3>
<p>Non-voting group members shall not be eligible to cast a ballot for any elected position.</p>
</div>
<div class="article-section">
<h3>6.5.</h3>
<p>The nominee winning the plurality of votes cast in the election for each position shall be deemed the winner.</p>
</div>
<div class="article-section">
<h3>6.6.</h3>
<p>On the condition that multiple candidates are to be elected for a single position, the nominees winning the largest share of the votes cast shall be deemed the winners until all positions are filled.</p>
</div>
<div class="article-section">
<h3>6.7.</h3>
<p>The elections must be held in a nonbiased manner. No individual who is seeking election may participate in planning or administering the election.</p>
</div>
<div class="article-section">
<h3>6.8.</h3>
<p>For all unfilled positions, the remaining officers will share the duties and responsibilities until someone can be found to fulfill the positions(s) through a by-election and vote of simple majority (50% + 1)</p>
</div>
</article>
<!-- Article 7 -->
<article class="constitution-article" id="article-7">
<h2 class="article-title">7. Article Seven – Finances</h2>
<div class="article-section">
<h3>7.1.</h3>
<p>The Financial Lead shall keep an active record of income and expenses.</p>
</div>
<div class="article-section">
<h3>7.2.</h3>
<p>The Financial Lead shall present the group's updates on the group's financial position at annual general meetings.</p>
</div>
<div class="article-section">
<h3>7.3.</h3>
<p>The Executive Committee must approve all expenditures over $300.00 through a majority vote at a meeting of the Executive Committee.</p>
</div>
<div class="article-section">
<h3>7.4.</h3>
<p>The group may not engage in activities that are essentially commercial in nature.</p>
</div>
<div class="article-section">
<h3>7.5.</h3>
<p>The group will not have as a major activity a function that makes it an on-campus chapter of a commercial organization.</p>
</div>
<div class="article-section">
<h3>7.6.</h3>
<p>The group will not provide services and goods at a profit when that profit is used for purposes other than those of the group.</p>
</div>
<div class="article-section">
<h3>7.7.</h3>
<p>The group will not pay salaries to any of its officers.</p>
</div>
</article>
<!-- Article 8 -->
<article class="constitution-article" id="article-8">
<h2 class="article-title">8. Article Eight – Meetings</h2>
<div class="article-section">
<h3>8.1.</h3>
<p>The Executive Committee shall meet twice monthly. The quorum for Executive Committee meetings shall be 50%+1 of the voting members of the Executive Committee.</p>
</div>
<div class="article-section">
<h3>8.2.</h3>
<p>The President is eligible to cast the tie-breaking vote.</p>
</div>
<div class="article-section">
<h3>8.3.</h3>
<p>The group shall hold general meetings at least twice per year to provide the general membership an opportunity to review the group's annual activity plan, financial health, and propose or vote on constitutional amendments.</p>
</div>
<div class="article-section">
<h3>8.4.</h3>
<p>The Executive Committee must announce the date of a general meeting to the general membership at least two (2) weeks prior to the date of the meeting.</p>
</div>
</article>
<!-- Article 9 -->
<article class="constitution-article" id="article-9">
<h2 class="article-title">9. Article Nine - Termination of Membership</h2>
<div class="article-section">
<h3>9.1.</h3>
<p>The Executive Committee may revoke the membership of any member of the team who commits an act negatively affecting the interests of the team and its members, including non-disclosure of a significant or continuing conflict of interest.</p>
</div>
<div class="article-section">
<h3>9.2.</h3>
<p>A vote to revoke membership must be held at a meeting of the Executive Committee.</p>
</div>
<div class="article-section">
<h3>9.3.</h3>
<p>A two-thirds majority of the Executive Committee is required to approve any motion to revoke membership.</p>
</div>
<div class="article-section">
<h3>9.4.</h3>
<p>Any member facing removal shall have the right to appeal the decision of the Executive Committee to the general membership.</p>
</div>
<div class="article-section">
<h3>9.5.</h3>
<p>In the case of an appeal, a simple majority vote at a meeting of the general membership shall be required to sustain the revocation of membership.</p>
</div>
<div class="article-section">
<h3>9.6.</h3>
<p>Following a termination of membership, the member will be removed from the team's membership and will lose any privileges associated with being a member of the team.</p>
</div>
<div class="article-section">
<h3>9.7.</h3>
<p>Executive Committee members are subject to the same termination of membership process as general members.</p>
</div>
</article>
<!-- Article 10 -->
<article class="constitution-article" id="article-10">
<h2 class="article-title">10. Article Ten – Safety</h2>
<div class="article-section">
<h3>10.1.</h3>
<p>All domestic airspace laws must be always abided in accordance with Transport Canada.</p>
</div>
<div class="article-section">
<h3>10.2.</h3>
<p>All municipal by-laws must be adhered by regarding launches.</p>
</div>
<div class="article-section">
<h3>10.3.</h3>
<p>The Safety/Testing Team must run a safety check before each test or launch, ensuring no hazards are present in the surrounding area.</p>
</div>
<div class="article-section">
<h3>10.4.</h3>
<p>There must be a fire extinguisher and fire blanket ready to be used for any solid rocket motor test or launch.</p>
</div>
<div class="article-section">
<h3>10.5.</h3>
<p>Everyone must be equipped with safety goggles regardless of solid rocket or pressurized water propulsion rocket test or launch.</p>
</div>
</article>
<!-- Article 11 -->
<article class="constitution-article" id="article-11">
<h2 class="article-title">11. Article Eleven – Amendments</h2>
<div class="article-section">
<h3>11.1.</h3>
<p>All constitutional amendments shall require a 2/3 majority vote to be passed at a general meeting.</p>
</div>
<div class="article-section">
<h3>11.2.</h3>
<p>All voting members may propose and vote on amendments to the constitution.</p>
</div>
<div class="article-section">
<h3>11.3.</h3>
<p>The Executive Committee shall submit the revised constitution to staff in the Division of Student Life at the University of Toronto within two (2) weeks.</p>
</div>
<div class="article-section">
<h3>11.4.</h3>
<p>Amendments to the constitution shall take effect only once the revised constitution has been approved by staff in the Division of Student Life at the University of Toronto.</p>
</div>
</article>
</div>
</div>
</section>
<!-- Back to Top Button -->
<button id="backToTop" class="back-to-top" onclick="scrollToTop()">
<i class="fas fa-chevron-up"></i>
</button>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-logo">
<img src="UTSTAR_logo.png" alt="UofT STAR Logo" class="footer-logo-img">
<span>UofT STAR</span>
</div>
<div class="footer-info">
<div class="footer-location">
<i class="fas fa-map-marker-alt"></i>
<div class="location-text">
<span>Bahen Centre for Information Technology</span>
<small>University of Toronto</small>
</div>
</div>
<div class="footer-map">
<div class="map-button" onclick="window.open('https://www.google.com/maps/place/Bahen+Centre+for+Information+Technology/@43.6597267,-79.3994284,17z/data=!3m1!4b1!4m6!3m5!1s0x882b34c75165c957:0x6459384147b4b67b!8m2!3d43.6597267!4d-79.3972397!16s%2Fm%2F0h3p4d0', '_blank')">
<div class="map-preview">
<i class="fas fa-map-marker-alt"></i>
<span>View on Google Maps</span>
<small>Click to open location</small>
</div>
</div>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 University of Toronto STAR. All rights reserved.</p>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>