-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
84 lines (83 loc) · 2.95 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
<html>
<head>
<link href="style.css" rel="stylesheet">
<title>Win Khaing's Resume</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
</head>
<body>
<header id="header">
<!-- resume header with your name and title -->
<h1><b>WIN</b> KHAING</h1>
<hr>
Clinical Epidemiologist | Medical Doctor | Researcher | Educator
<hr>
</header>
<main>
<article id="mainLeft">
<section>
<h2><b>CONTACT</b></h2>
<!-- contact info including social media -->
<p>
<i class="fa fa-envelope" aria-hidden="true"></i>
<a href="mailto:[email protected]">[email protected]</a>
</p>
<p>
<i class="fab fa-github" aria-hidden="true"></i>
<a href="https://github.com/winkhaing">winkhaing</a>
</p>
<p>
<i class="fab fa-linkedin" aria-hidden="true"></i>
<a href="https://linkedin.com/in/drwinkhaing">drwinkhaing</a>
</p>
</section>
<section>
<h2><b>SKILLS</b></h2>
<!-- your skills -->
<p>Epidemiology, Biostatistics, Evidence-Based Medicine, Stata, R, SPSS, GitHub</p>
</section>
<section>
<h2><b>EDUCATION</b></h2>
<!-- your education -->
<h3>PhD in Clinical Epidemiology</h3>
<p>
Mahidol University
</p>
<p>
2014-2017
</p>
<!-- your education -->
<h3>Master of Science (Public Health)</h3>
<p>
University of Medicine, Mandalay, Myanmar
</p>
<p>
2006-2007
</p>
</section>
</article>
<article id="mainRight">
<section>
<h2><b>ABOUT</b></h2>
<!-- about you -->
<p>A brief paragraph about you and what kind of company you want to work for.</p>
</section>
<section>
<h2><b>WORK EXPERIENCE</b></h2>
<!-- your work experience -->
<h3>JOB TITLE</h3>
<p>
Company Name | 2008 - 2010
</p>
<p>
Describe what you did in this position with one summary sentence and no more than 3 bullet points with specific highlights
</p>
<ul>
<li>Cool accomplishment</li>
<li>Cool accomplishment</li>
<li>Cool accomplishment</li>
</ul>
</section>
</article>
</main>
</body>
</html>