-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
96 lines (93 loc) · 3.33 KB
/
index.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
<html>
<head>
<title>Alex Le's Porfolio</title>
<link rel="stylesheet" type="text/css" href="css/portfolio_css.css" />
<script src="js/jquery-1.7.2.js" type="text/javascript"></script>
<script src="js/waypoints.js" type="text/javascript"></script>
<script src="js/portfolio_js.js" type="text/javascript"></script>
</head>
<body>
<div id="page">
<div id="header"></div>
<div id="innerWrapper">
<div id="nav">
<ul>
<li>
<a class="current" href="#" onClick="return false;">
<canvas class="nav_bg current" width="220" height="35"></canvas>
<p>HOME</p>
</a>
<canvas class="nav_sd" width="220" height="35"></canvas>
</li>
<li>
<a href="skills.html">
<canvas class="nav_bg" width="220" height="35"></canvas>
<p>SKILLS</p>
</a>
<canvas class="nav_sd" width="220" height="35"></canvas>
</li>
<li>
<a href="projects.html">
<canvas class="nav_bg" width="220" height="35"></canvas>
<p>PROJECTS</p>
</a>
<canvas class="nav_sd" width="220" height="35"></canvas>
</li>
<li>
<a href="work.html">
<canvas class="nav_bg" width="220" height="35"></canvas>
<p>WORK EXPERIENCE</p>
</a>
<canvas class="nav_sd" width="220" height="35"></canvas>
</li>
<li>
<a href="education.html">
<canvas class="nav_bg" width="220" height="35"></canvas>
<p>EDUCATION</p>
</a>
<canvas class="nav_sd" width="220" height="35"></canvas>
</li>
<li>
<a href="hobbies.html">
<canvas class="nav_bg" width="220" height="35"></canvas>
<p>HOBBIES</p>
</a>
<canvas class="nav_sd" width="220" height="35"></canvas>
</li>
</ul>
</div>
<div id="content">
<div class="contextBlock">
<div class="contextHeader">Overview</div>
<div class="contextBody">
<p>I am pursuing a major degree of Computing Science in Simon Fraser University. Have amounts of experiences on software development
and knowledge of related technical skills.</p>
<p>During the time of my academic studying and working in company, I found the top strength I have is the ability of learning new
skills or things quickly. Not only this strength gives me a better start when working on new projects, but also the passion and curiocity
drives me learning and being adaptive to new technology or new envorinment.</p>
<p>I have learned fundamental and advanced concepts of computing science from university. And get knowledge of the importance of code
readability and neat code style from my working experience. All these knowledge would help me conquer any difficulties in my study and
working.</p>
<p>Here is my <a class="def" href="file/resume.pdf" target="_blank">Resume</a>.</p>
</div>
</div>
<div class="contextBlock">
<div class="contextHeader">Contact Info</div>
<div class="contextBody">
<table>
<tr>
<td class="subtitle">E-mail:</td>
<td><a href="mailto:[email protected]">[email protected]</a></td>
</tr>
<tr>
<td class="subtitle">LinkedIn:</td>
<td><a href="http://ca.linkedin.com/pub/alex-le/49/90b/90/" target="_blank">Alex Le</a></td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
</body>
</html>