-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
549 lines (540 loc) · 22.4 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About | Skule™ French Society</title>
<link href="images/sfs_logo.png" type="image/x-icon" rel="shortcut icon" />
<!-- website icon -->
<link rel="stylesheet" href="./reset.css" />
<link rel="stylesheet" href="./globalStyles.css" />
<link rel="stylesheet" href="./components.css" />
<link rel="stylesheet" href="./about.css" />
<link rel="stylesheet" href="./home.css" />
<!-- aos css (animate on scroll library)-->
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
</head>
<body>
<!-- Nav Section -->
<div class="nav">
<div class="container">
<div class="nav__wrapper">
<a href="./index.html" class="logo">
<img
src="./images/sfs_logo.png"
style="width: 40%; height: auto; border-radius: 8px"
alt="Skule French Society"
/>
</a>
<nav>
<div class="nav__icon">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<line x1="3" y1="12" x2="21" y2="12" />
<line x1="3" y1="6" x2="21" y2="6" />
<line x1="3" y1="18" x2="21" y2="18" />
</svg>
</div>
<div class="nav__bgOverlay"></div>
<ul class="nav__list">
<div class="nav__close">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<line x1="18" y1="6" x2="6" y2="18" />
<line x1="6" y1="6" x2="18" y2="18" />
</svg>
</div>
<div class="nav__list_wrapper">
<li><a href="./index.html" class="nav__link">Home</a></li>
<li><a href="./about.html" class="nav__link">About Us</a></li>
<li>
<a href="./past_events.html" class="nav__link">Past Events</a>
</li>
<li>
<a href="./resources.html" class="nav__link">Resources</a>
</li>
<li>
<a href="./sponsors.html" class="nav__link">Partners</a>
</li>
<li>
<a href="./contact_us.html" class="btn primary-btn"
>Contact Us</a
>
</li>
</div>
</ul>
</nav>
</div>
</div>
</div>
<!-- End Nav Section-->
<!-- Our Story Section -->
<section id="ourStory" data-aos="fade-up">
<div class="container">
<div class="ourStory__wrapper">
<div class="ourStory__img">
<img src="./images/sfsLogoWBack.png" alt="SFS logo" />
</div>
<div class="ourStory__info">
<h3 class="ourStory__title">About SFS / À Propos de SFS...</h3>
<p class="ourStory__subtitle">
A student-run organisation that caters to each and everyone of
YOU!
</p>
<p class="ourStory__text">
We are building a community for French speaking engineering
students of ALL levels from the ground up. We aim to provide
students with a space to practise their French and connect with
like-minded students through fun and relaxing activities. In the
past year, we ran a Café event, and French cinema outings with
Alliance Francaise.
</p>
<p class="ourStory__text">
This year we hosted events such as the Crepes building Café,
French Movie Night, Valentine’s Day Origami and Academic Speakers
event. We have partnered with many clubs such as Hard-Hat Café,
the Language Initiative Exchange Club and the French course union
program club.
</p>
<p class="ourStory__subtitle">
Une association gérée par les étudiants pour chacun d'entre VOUS!
</p>
<p class="ourStory__text">
Nous construisons une communauté francophone pour les étudiants en
ingénierie, quel que soit votre niveau de langue. Depuis l'année
dernière, nous avons organisé des événements tels que: Café, et
des sorties au cinéma avec Alliance Française.
</p>
<p class="ourStory__text">
Cette année, nous avons organisé encore plus d'événements amusants
tels qu’un Café de crêpes, soirée cinéma française, Origami et
beignets pour la Saint-Valentin et conférence professionnelle
académique. Nous avons établi des partenariats avec de nombreux
clubs tels que le Hard-Hat Café, le Langage Initiative Exchange
Club (LEI) et le club du programme des cours de français (FCU)
pour donner à nos membres un espace pour pratiquer le français et
pour rencontrer d'autres étudiants partageant les mêmes idées.
</p>
<!-- <h3 class="ourStory__title">
Mission statement
</h3>
<p class="ourStory__text">
To contribute to the vibrant spirit of our Skule community and positively impact the students who participate in our events that can help grow our community and bring us closer to our goals of providing a safe-space for French-speaking students of all levels and societies.
</p> -->
</div>
</div>
</div>
</section>
<!-- End Our Story Section-->
<!-- Team Members -->
<section id="clubMembers" data-aos="fade-up">
<div class="container">
<h3 class="form__title">Our Team</h3>
</div>
</section>
<section id="clubMembers" data-aos="fade-up">
<div class="container">
<div class="clubMembers__wrapper">
<div class="clubMembers__item">
<div class="clubMembers__item__img">
<img
src="images/portraits/Bibi_Bundhoo-President.jpeg"
alt="member portrait"
/>
</div>
<h2 class="clubMembers__item__title">Bibi Bundhoo, Chem Eng</h2>
<h3 class="clubMembers__item__role">President</h3>
<p class="clubMembers__item__text">
I went to an all-french highschool with the CS Viamonde School
board and I love to speak French. I also love to help others
connect with the French language and SFS helps me achieve that.
</p>
</div>
<div class="clubMembers__item">
<div class="clubMembers__item__img">
<img
src="images/portraits/Isabelle_Ali_VP.jpg"
alt="member portrait"
/>
</div>
<h2 class="clubMembers__item__title">Isabelle Ali, Civ Eng</h2>
<h3 class="clubMembers__item__role">Vice-President</h3>
<p class="clubMembers__item__text">
I was in the French Immersion program and joined my high school’s
French club. Now that I’m not taking courses in French anymore,
SFS is going to help keep me connected to the French language and
culture, and I’m excited to meet other people interested in the
same thing.
</p>
</div>
<div class="clubMembers__item">
<div class="clubMembers__item__img">
<img
src="images/portraits/Adrien_Mery_Webmaster.png"
alt="member portrait"
/>
</div>
<h2 class="clubMembers__item__title">Adrien Mery, ECE</h2>
<h3 class="clubMembers__item__role">Webmaster</h3>
<p class="clubMembers__item__text">
I was born and grew up in Saint-Germain-en-Laye, France. I moved
to the US for 2 years as a kid and learned English. I went to an
International High School and I have always loved meeting people
with different backgrounds. This is why I am at U of T and why I
am part of this club!
</p>
</div>
</div>
</div>
</section>
<section id="clubMembers" data-aos="fade-up">
<div class="container">
<div class="clubMembers__wrapper">
<div class="clubMembers__item">
<div class="clubMembers__item__img">
<img
src="./images/portraits/placeholder_portrait.png"
alt="member portrait"
/>
</div>
<h2 class="clubMembers__item__title">Eric Lefort, Eng Sci</h2>
<h3 class="clubMembers__item__role">Webmaster</h3>
<p class="clubMembers__item__text"></p>
</div>
<div class="clubMembers__item">
<div class="clubMembers__item__img">
<img
src="images/portraits/Vivian_Chiang_Finance.jpg"
alt="member portrait"
/>
</div>
<h2 class="clubMembers__item__title">Vivian Chiang, Mech Eng</h2>
<h3 class="clubMembers__item__role">VP Finance</h3>
<p class="clubMembers__item__text">
I studied French in school until grade 12. Over the years, I've
enjoyed learning about the language, French culture, and various
French media. I'm hoping to improve my French skills through SFS.
I also hope to meet other French speakers and those interested in
learning the language!
</p>
</div>
<div class="clubMembers__item">
<div class="clubMembers__item__img">
<img
src="images/portraits/Kyla_Tan_Finance .jpg"
alt="member portrait"
/>
</div>
<h2 class="clubMembers__item__title">Kyla Tan, MSE</h2>
<h3 class="clubMembers__item__role">VP Finance</h3>
<p class="clubMembers__item__text">
I took French up until high school. I now work at the Ontario
Science Centre and want to improve my French so I can help the
francophone visitors!
</p>
</div>
</div>
</div>
</section>
<section id="clubMembers" data-aos="fade-up">
<div class="container">
<div class="clubMembers__wrapper">
<div class="clubMembers__item">
<div class="clubMembers__item__img">
<img
src="./images/portraits/placeholder_portrait.png"
alt="member portrait"
/>
</div>
<h2 class="clubMembers__item__title">Sebastian Pigeon, EngSci</h2>
<h3 class="clubMembers__item__role">Events & Logistics</h3>
<p class="clubMembers__item__text"></p>
</div>
<div class="clubMembers__item">
<div class="clubMembers__item__img">
<img
src="images/portraits/Nathan_Cibonga_Events.jpg"
alt="member portrait"
/>
</div>
<h2 class="clubMembers__item__title">Nathan Cibonga, Mech Eng</h2>
<h3 class="clubMembers__item__role">Events & Logistics</h3>
<p class="clubMembers__item__text">
I am originally from the Democratic Republic of the Congo, so
French is my first language. I studied in the French system for 10
years until I moved to South Africa. My goal is to meet people who
I can speak french with because even though I speak english daily,
I am still more comfortable when speaking french. I believe that
through SFS, I can meet like minded people who also have an
interest in speaking french.
</p>
</div>
<div class="clubMembers__item">
<div class="clubMembers__item__img">
<img
src="images/portraits/Matthew_Henriquet_Events.jpg"
alt="member portrait"
/>
</div>
<h2 class="clubMembers__item__title">Matthew Henriquet</h2>
<h3 class="clubMembers__item__role">Events & Logistics</h3>
<p class="clubMembers__item__text">
I am French-Canadian and therefore, I grew up for most of my life
in France. I moved to Toronto for University and want to continue
interacting with the French language and culture and be able to
share that engagement with others. Meeting francophones from
around the world and their relationship with the French language
are the reasons that make SFS such an appealing society.
</p>
</div>
</div>
</div>
</section>
<section id="clubMembers" data-aos="fade-up">
<div class="container">
<div class="clubMembers__wrapper">
<div class="clubMembers__item">
<div class="clubMembers__item__img">
<img
src="./images/portraits/placeholder_portrait.png"
alt="member portrait"
/>
</div>
<h2 class="clubMembers__item__title">Nicole Ann Philip, ECE</h2>
<h3 class="clubMembers__item__role">Events & Logistics</h3>
<p class="clubMembers__item__text">
I have always loved learning languages, and French was essentially
the language that made me realise it. I decided to be a part of
SFS so that I could continue learning French and improve my
speaking skills. One day, I hope to be able to speak fluently and
read French literature effortlessly.
</p>
</div>
<div class="clubMembers__item">
<div class="clubMembers__item__img">
<img
src="images/portraits/Jean_de_Dieu_Lokaso_Author_for_IG.jpg"
alt="member portrait"
/>
</div>
<h2 class="clubMembers__item__title">Jean De Dieu, Civ Eng</h2>
<h3 class="clubMembers__item__role">IG Author</h3>
<p class="clubMembers__item__text">
I am originally from the D R Congo, so French is my first
language, UofT is the first English speaking school I am
attending.. I joined SFS to have the opportunity to interact with
French people and also encourage those who are learning it.
</p>
</div>
<div class="clubMembers__item">
<div class="clubMembers__item__img">
<img
src="images/portraits/Gabrielle_Jean-Pierre_Marketing.JPG"
alt="member portrait"
/>
</div>
<h2 class="clubMembers__item__title">
Gabrielle Jean-Pierre, Eng Sci
</h2>
<h3 class="clubMembers__item__role">VP Marketing</h3>
<p class="clubMembers__item__text">
I’m haitian-canadian so I grew up speaking french with family and
I also went to french elementary and secondary schools. I’ve
joined SFS to meet other french speakers and to encourage people
to engage in learning this beautiful language and about numerous
french cultures!
</p>
</div>
</div>
</div>
</section>
<section id="clubMembers" data-aos="fade-up">
<div class="container">
<div class="clubMembers__wrapper">
<div class="clubMembers__item">
<div class="clubMembers__item__img">
<img
src="images/portraits/Parneet_Saini_VP_Outreach.JPG"
alt="member portrait"
/>
</div>
<h2 class="clubMembers__item__title">Parneet Saini, Track One</h2>
<h3 class="clubMembers__item__role">VP Outreach</h3>
<p class="clubMembers__item__text">
Passionate about French since my school days, I've journeyed from
classroom to Delf B1 proficiency. I became a member of this club
with the ambition to serve as an executive member during my first
year and, more importantly, to cultivate and refine my proficiency
in the French language. This opportunity aligns with my passion
for French culture, linguistics, and my desire to contribute
meaningfully to the society.
</p>
</div>
<div class="clubMembers__item">
<div class="clubMembers__item__img">
<img
src="./images/portraits/placeholder_portrait.png"
alt="member portrait"
/>
</div>
<!-- <h2 class="clubMembers__item__title">You Perhaps?</h2>
<h3 class="clubMembers__item__role"></h3>
<p class="clubMembers__item__text">
We are always looking for interesting and motivated people so if you like this club and you have ideas, let us know by contacting us!
</p> -->
</div>
<div class="clubMembers__item">
<div class="clubMembers__item__img">
<img
src="./images/portraits/placeholder_portrait.png"
alt="member portrait"
/>
</div>
<!-- <h2 class="clubMembers__item__title">Your Friend, Perhaps?</h2>
<h3 class="clubMembers__item__role">Title</h3>
<p class="clubMembers__item__text">
</p> -->
</div>
</div>
</div>
</section>
<!-- End Team Members -->
<!-- Footer -->
<footer>
<div class="container">
<div class="footer__wrapper">
<div class="footer__col1">
<div class="footer__logo">
<img
src="./images/sfs_logo.png"
style="width: 30%; height: auto; border-radius: 8px"
alt=" Skule French Society"
/>
</div>
<p class="footer__desc">Francophone Club at U of T...SFS!</p>
</div>
<div class="footer__col2">
<div class="footer__socials">
<h4 class="footer__socials__title">Follow us</h4>
<ol>
<li>
<a href="https://www.instagram.com/uoftsfs/" target="_blank">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1"
stroke-linecap="round"
stroke-linejoin="round"
>
<rect x="2" y="2" width="20" height="20" rx="5" ry="5" />
<path
d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"
/>
<line x1="17.5" y1="6.5" x2="17.51" y2="6.5" />
</svg>
</a>
</li>
<li>
<a
href="https://www.facebook.com/utoronto.sfs/"
target="_blank"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1"
stroke-linecap="round"
stroke-linejoin="round"
>
<path
d="M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"
/>
</svg>
</a>
</li>
</ol>
</div>
</div>
<div class="footer__col3">
<h3 class="footer__text__title">Links</h3>
<ol class="footer__text">
<li>
<a href="./index.html">Home</a>
</li>
<li>
<a href="./about.html">About Us</a>
</li>
<li>
<a href="./past_events.html">Past Events</a>
</li>
<li>
<a href="./resources.html" class="nav__link">Resources</a>
</li>
<li>
<a href="./sponsors.html">Partners</a>
</li>
<li>
<a href="./contact_us.html">Contact Us</a>
</li>
</ol>
</div>
<div class="footer__col4">
<h3 class="footer__text__title">Contact Execs</h3>
<ol class="footer__text">
<li>
<a href="mailto: [email protected]"
>
</li>
</ol>
<h3 class="footer__text__title">Report a complaint with EngSoc</h3>
<ol class="footer__text">
<li>
<a href="mailto: [email protected]">[email protected]</a>
</li>
</ol>
</div>
</div>
</div>
</footer>
<div id="copyright">
<div class="container">
<p class="copyright__text">
© Copyright 2024 Skule French Society | All rights reserved
</p>
</div>
</div>
<!-- End Footer-->
<!-- aos script-->
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<!-- custom script-->
<script src="./main.js"></script>
</body>
</html>