-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexperience.html
More file actions
49 lines (44 loc) · 1.58 KB
/
Copy pathexperience.html
File metadata and controls
49 lines (44 loc) · 1.58 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Kenny Soh's Profile</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css?family=Muli%7CRoboto:400,300,500,700,900" rel="stylesheet"></head>
<body>
<div class="main-nav">
<ul class="nav">
<li class="name">Kenny Soh</li>
<li><a href="index.html">Home</a></li>
<li><a href="#">Experience</a></li>
</ul>
</div>
<header class="experience-html">
<h1 class="tag name">Experience.</h1>
</header>
<main class="flex">
<div class="card">
<h2>Education</h2>
<p>I have recently graduated with a Bachelors in Information System from the Singapore University of Technology and Design.I also have a diploma in Electrical Computer Engineering with a focus in Biomedical Engineering from Ngee Ann Poly
</p>
</div>
<div class="card">
<h2>Projects</h2>
<ul>
<li>Android App- Urban Farming IOT</li>
<li>Unity Game - Cheat Code</li>
<li>React - Weather App</li>
<li>Machine Learning - SG Property Rental Prices</li>
</ul>
</div>
</main>
<footer>
<ul>
<li><a href="https://www.linkedin.com/in/kenny-soh/" class="social linkedin">LinkedIn</a></li>
<li><a href="https://github.com/KennySoh" class="social github">Github</a></li>
</ul>
<p class="copyright">Copyright 2019, Kenny Soh</p>
</footer>
</body>
</html>