-
Notifications
You must be signed in to change notification settings - Fork 0
/
career.html
102 lines (97 loc) · 4.71 KB
/
career.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Your Name - Career Highlights</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap" rel="stylesheet" />
<!-- Link to external CSS file -->
<link rel="stylesheet" href="assets/css/styles.css" />
<style></style>
</head>
<body>
<header>
<nav>
<div class="logo">
<a href="index.html">
<img src="https://i.ibb.co/z4QWGJZ/KTM-Edu-Tech-Logo.png" alt="KTM EduTech Logo" class="logo-large">
<img src="https://i.ibb.co/JvXkFbv/ktm-favicon.png" alt="KTM EduTech Logo" class="logo-small">
</a>
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="career.html">Career</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</nav>
</header>
<main>
<section id="career" class="container">
<h1>Career Highlights</h1>
<div class="career-item">
<h3>Head of C31 Newsletter Publication</h3>
<p><strong>Anglo Singapore International School, Bangkok TH</strong> | JUL 2020 - JUN 2024</p>
<ul>
<li>Led the newsletter publication process from concept to delivery.</li>
<li>
Crafted compelling and well-structured content with a strong focus on clarity and impact.
</li>
<li>
Ensured timely completion of newsletters, even in fast-paced and deadline-driven
environments.
</li>
<li>Utilized AI technology for content management and optimizing articles for SEO.</li>
</ul>
</div>
<div class="career-item">
<h3>Web Development & Technical Maintenance Support</h3>
<p><strong>Gold Label And Press Limited Partnership, Bangkok TH</strong> | AUG 2009 - PRESENT</p>
<ul>
<li>
Worked independently and collaboratively to meet IT goals and address technical challenges
effectively.
</li>
<li>Troubleshot and maintained network systems to ensure smooth operation.</li>
<li>Monitored and prioritized Help Desk requests, adhering to established response times.</li>
<li>
Conducted IT system audits to identify vulnerabilities and recommend appropriate solutions.
</li>
</ul>
</div>
<div class="career-item">
<h3>Computer Science Educator [K-6]</h3>
<p><strong>Anglo Singapore International School, Bangkok TH</strong> | JUL 2017 - AUG 2024</p>
<ul>
<li>Established and maintained a safe, nurturing, and inclusive classroom environment.</li>
<li>
Collaborated with fellow educators to design and implement interdisciplinary curriculum
units.
</li>
<li>
Utilized a variety of instructional strategies to enhance student comprehension and
engagement.
</li>
<li>
Organized and led extracurricular clubs and after-school programs focused on technology
integration and computer science.
</li>
</ul>
</div>
<!-- Add the remaining career items following the same structure -->
</section>
</main>
<footer>
<p>© <span id="year"></span> | KTM EduTech</p>
</footer>
<!-- Link to JS file before </body> -->
<script src="assets/js/scripts.js"></script>
</body>
</html>