-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
238 lines (221 loc) · 8.46 KB
/
index.html
File metadata and controls
238 lines (221 loc) · 8.46 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
<!DOCTYPE html>
<html>
<!-- https://replit.com/@mrvsurya/HTML-CSS-Intro -->
<head>
<meta charset="utf-8">
<title>Moses Chia | Computing Student in Singapore</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap" rel="stylesheet">
</head>
<body class="normal-text">
<div class="background-img"></div>
<header>
<ul id="menu" class="shadow" style="">
<li class="navlink">
<a href="#about" class="navlink">About</a>
</li>
<li class="navlink">
<a href="#experience" class="navlink">Experience</a>
</li>
<li class="navlink">
<a href="#education" class="navlink">Education</a>
</li>
<li class="navlink">
<a href="#projects" class="navlink">Projects</a>
</li>
<li class="navlink">
<a href="#skills" class="navlink">Skills</a>
</li>
<li class="navlink">
<a href="#contact" class="navlink">Contact</a>
</li>
</ul>
</header>
<!-- End header -->
<div id="lead">
<div id="lead-content">
<h1>Moses Chia</h1>
<h2 class>Computing Student</h2>
<a href="#" class="btn-rounded-white">Download Resume</a>
<a href="#education"> Jump to Education</a>
</div>
<!-- End #lead-content -->
<div id="lead-overlay"></div>
<div id="lead-down">
<span>
<i class="fa fa-chevron-down" aria-hidden="true"></i>
</span>
</div>
<!-- End #lead-down -->
</div>
<!-- End #lead -->
<div id="about">
<div class="container">
<div class="row">
<div>
<h2>About Me</h2>
</div>
<div>
<p>
I'm a 17 y/o NYJC student taking A Level Computing. Computing is really a deep passion of mine, having been interested in technology and computing since a young age.
</p>
</div>
</div>
</div>
</div>
<!-- End #about -->
<div id="experience" class="background-alt">
<h2 class="heading">Experience</h2>
<div id="experience-timeline">
<div data-date="12-18 Jan 2023">
<h3 class="job-name">SUTD STEAMxD Workshop</h3>
<h4 class="job-title">Workshop Participant</h4>
<p>
I learnt a lot about AI Robots, and even built one. I learnt about AI and even trained one to recogise humans and animals.
</p>
</div>
<div data-date="28 Nov - 2 Dec 2022">
<h3 class="job-name">CSIT Experiential Journey</h3>
<h4 class="job-title">Scholar lol</h4>
<p>
During the CSIT Experiential Journey, I learnt about CSIT's various domains, from cybersecurity to software engineering.
</p>
</div>
</div>
</div>
<!-- End #experience -->
<div id="education">
<h2 class="heading">Education</h2>
<div class="education-block">
<img src="images/nanyang_logo.png" alt="NYJC logo">
<h3>Nanyang Junior College</h3>
<span class="education-date">Jan 2022~</span>
<h4>Subjects I take:</h4>
<ul>
<li>H2 Physics</li>
<li>H2 Computing</li>
<li>H2 Mathematics</li>
<li>H1 Economics</li>
<li>H3 Physics</li>
</ul>
<p>
My life is NYJC is all work and some play. It really is a mugger school lol.
</p>
</div>
<!-- End .education-block -->
<div class="education-block">
<img src="images/temasek-secondary-school_logo.png" alt="Temasek Secondary School logo" id="temasek-logo">
<h3>Temasek Secondary School</h3>
<span class="education-date">Jan 2018 - October 2021</span>
<h4>O Level Certificate</h4>
<p>
My secondary school life was very fun indeed. We learnt about Microbit in Sec 2, tried to get into robotics but got rejected :(
</p>
</div>
<!-- End .education-block -->
</div>
<!-- End #education -->
<div id="projects" class="background-alt">
<h2 class="heading">Projects</h2>
<div class="container">
<div class="row">
<div class="project shadow-large">
<div class="project-image">
<img src="images/project.png" />
</div>
<!-- End .project-image -->
<div class="project-info">
<h3>Guess the number</h3>
<p>
Guess the number? Sounds easy right? Well, not so much. As part of the pair programming project, we created a client and server using socket programming in python. The client end would allow users to input the guesses, while the server end processed the input and gave the appropriate responses.
</p>
<a href="https://replit.com/join/lmslwhoygp-moses-chia-chen">View Project</a>
</div>
<!-- End .project-info -->
</div>
<!-- End .project -->
<div class="project shadow-large">
<!-- End .project-image -->
<div class="project-info">
<h3>O Level Score Calculator</h3>
<p>
I created this in 2021 when I took my O levels. I only wrote a python script but maybe I can update it with a frontend based on HTML/CSS 😁
</p>
<!--When the link is fixed, change the comment below-->
<a href="#">Link to be updated</a>
</div>
<!-- End .project-info -->
</div>
<!-- End .project -->
</div>
</div>
</div>
<!-- End #projects -->
<div id="skills">
<h2 class="heading">Skills</h2>
<ul>
<li>HTML/CSS</li>
<li>Python</li>
<li>C++</li>
<li>Scratch</li>
</ul>
</div>
<!-- End #skills -->
<div id="contact">
<h2>Get in Touch</h2>
<div id="contact-form">
<form method="POST" action="https://formspree.io/email@email.com">
<input type="hidden" name="_subject" value="Contact request from personal website" />
<input type="email" name="_replyto" placeholder="Your email" required>
<textarea name="message" placeholder="Your message" required></textarea>
<button type="submit">Send</button>
</form>
</div>
<!-- End #contact-form -->
</div>
<!-- End #contact -->
<footer>
<div class="container">
<div class="row">
<div class="col-sm-5 copyright">
<p>
Copyright © 2023 MOSES CHIA
</p>
</div>
<div class="col-sm-2 top">
<span id="to-top">
<i class="fa fa-chevron-up" aria-hidden="true"></i>
</span>
</div>
<div class="col-sm-5 social">
<ul class="shadow">
<li class="navlink">
<a href="https://github.com/" target="_blank"><i class="fa fa-github" aria-hidden="true">GitHub</i></a>
</li>
<li class="navlink">
<a href="https://stackoverflow.com/" target="_blank"><i class="fa fa-stack-overflow" aria-hidden="true">Stack Overflow</i></a>
</li>
<li class="navlink">
<a href="https://linkedin.com/" target="_blank"><i class="fa fa-linkedin" aria-hidden="true">Linked-In</i></a>
</li>
<li class="navlink">
<a href="https://www.facebook.com/" target="_blank"><i class="fa fa-facebook" aria-hidden="true">Facebook</i></a>
</li>
<li class="navlink">
<a href="https://twitter.com/" target="_blank"><i class="fa fa-twitter" aria-hidden="true">Twitter</i></a>
</li>
<li class="navlink">
<a href="https://plus.google.com/" target="_blank"><i class="fa fa-google-plus" aria-hidden="true">Google Plus</i></a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<!-- End footer -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="js/scripts.min.js"></script>
</body>
</html>