-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathess.html
85 lines (78 loc) · 4.41 KB
/
ess.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dennis Lieu Portfolio</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.css"
integrity="sha256-46qynGAkLSFpVbEBog43gvNhfrOj+BmwXdxFgVK/Kvc=" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Source+Code+Pro:400,900|Source+Sans+Pro:300,900&display=swap:>">
<script src="https://kit.fontawesome.com/76b978fde2.js" crossorigin="anonymous"></script>
</head>
<body>
<header class="header">
<a href="index.html"><img class="logo" src="images/dennis-logo.png" alt="Logo"></img></a>
<button class="nav-toggle" aria-label="toggle navigation">
<span class="hamburger"></span>
</button>
<nav class="nav">
<ul class="nav__list">
<li class="nav__item"><a href="index.html#home" class="nav__link">Home</a></li>
<li class="nav__item"><a href="index.html#about" class="nav__link">About Me</a></li>
<li class="nav__item"><a href="index.html#skills-attributes" class="nav__link">Skills & Attributes</a>
</li>
<li class="nav__item"><a href="index.html#courses" class="nav__link">Coursework</a></li>
<li class="nav__item"><a href="index.html#projects" class="nav__link">Projects</a></li>
<li class="nav__item"><a href="index.html#involvement" class="nav__link">Involvement</a></li>
</ul>
</nav>
</header>
<div class="portfolio-entry">
<h1 class="portfolio-entry__title">Engineering Students' Society</h1>
<img class="portfolio-entry__img" src="images/ess-graphic.png" alt="Graphic of leadership and organization">
<div>
<h3>About the Position</h3>
<p>As Professional Development Commissioner for the Engineering Students’ Society (ESS), it was my
responsibility to host events for the students to develop their professional skills. This was
particularly challenging due to remote learning. </p>
<p>However, I managed to find opportunities out of a bad situation. We found that hosting events online had
benefits as well. It was much easier to coordinate events since people’s availability from home was
greater than normal. Some events I was involved in holding include:</p>
<ul>
<li>The ESS career fair</li>
<li>Resume review sessions</li>
<li>Mock interview sessions</li>
<li>Information sessions</li>
<li>Panels</li>
</ul>
<h3>What I Learned</h3>
<p>Being on the ESS allowed me to further grow my <b>communication and networking</b> skills through
interacting with my peers and industry professionals. <b>Coordinating</b> the events and volunteers
pushed me to use my <b>organizational skills</b>, and answering emails from companies allowed me to
exercise my <b>professional writing skills</b>.</p>
<p>Running events with my peers has been something that’s increased my leadership. As the incoming
Sponsorship Commissioner for the ESS, I’m looking forward to seeing continued growth in myself and the
students the ESS represents.</p>
</div>
</div>
<footer class="footer">
<a href="mailto:[email protected]" class="footer__link">[email protected]</a>
<ul class="social-list">
<li class="social-list__item">
<a class="social-list__link" href="https://github.com/Dennull">
<i class="fab fa-github"></i>
</a>
</li>
<li class="social-list__item">
<a class="social-list__link" href="https://www.linkedin.com/in/dennis-lieu-a055781a0/">
<i class="fab fa-linkedin"></i>
</a>
</li>
</ul>
</footer>
<script src="js/index.js"></script>
</body>
</html>