-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcv.html
49 lines (48 loc) · 2.15 KB
/
cv.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script defer src="script.js"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Opally Taebunyanuphap">
<meta name="keywords" content="Carnegie Mellon University, Information Systems">
<meta name="description" content="Opally Taebunyanuphap professional website">
<title>Opally Taebunyanuphap</title>
</head>
<body onload="addYear()">
<header>
<h1 id="webname">Opally Taebunyanuphap</h1>
<nav id="myTopnav" class="topnav">
<a href="index.html">Home</a>
<a href="cv.html" class="active">CV</a>
<a href="contact.html">Contact me</a>
<a href="fun.html">For fun</a>
<a href="javascript:void(0);" class="icon">
<i class="fa fa-bars" onclick="activeNav()"></i>
</a>
</nav>
</header>
<div class="main">
<h2> Curriculum Vitae </h2>
<table>
<tr><th>Section</th><th>Description</th></tr>
<tr><td>Education</td><td>Carnegie Mellon University</td></tr>
<tr><td>Experience</td><td><ul>
<li>Buggy Alumni Association's website project (Pittsburgh, PA)</li>
<li>External Chair for Thai Student Association (Pittsburgh, PA)</li>
<li>Intern at National Nanotechnology center (Bangkok, Thailand)</li>
<li>Graphic Designer at Thai Exchange (Bangkok, Thailand)</li>
</ul></td></tr>
<tr><td>Awards</td><td>2nd place Poster Award, Asian Science Camp 2022</td></tr>
</table>
<br>
<a href="your_resume.pdf" target="_blank"><strong>My resume, pdf version</strong></a>
</div>
<footer>
<p id="copyYear"> Opally Taebunyanuphap ©</p>
</footer>
</body>
</html>