-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCV.html
325 lines (281 loc) · 12.2 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
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-50439558-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-50439558-1');
</script>
<style>
h9 { float: right }
#Example_L {
-moz-box-shadow: inset 0 0 5px 5px #888;
-webkit-box-shadow: inset 0 0 5px 5px#888;
box-shadow: inset 0 0 5px 5px #888;
}
#Example_A {
-moz-box-shadow: -5px -5px #888;
-webkit-box-shadow: -5px -5px #888;
box-shadow: -5px -5px #888;
}
#Example_E {
-moz-box-shadow: 0 0 5px #888;
-webkit-box-shadow: 0 0 5px#888;
box-shadow: 0 0 5px #888;
}
#image-container {
min-width:782px; /* width of 3 images (746px) plus images' padding and border (36px) */
padding:10px;
border:1px solid #d3d2d2;
background-color:#f0f0f0;
}
#image-container img {
padding:5px;
border:1px solid #d3d2d2;
background-color:#fff;
}
#image-right {
float:right;
width:250px;
height:49px;
}
#image-left {
float:left;
width:250px;
height:36px;
}
#image-center {
display:block;
width:246px;
height:59px;
margin:auto;
}
</style>
<link rel="icon" href='images/profile_color_square.jpg'>
<title>Kevin Tang, Language Science</title>
<meta charset="iso-8859-1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/layout.css" type="text/css" media="all">
<link rel="stylesheet" href="styles/mediaqueries.css" type="text/css" media="all">
<!-- <link rel="stylesheet" href="styles/font-awesome.min.css" type="text/css" media="all"> -->
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.css" rel="stylesheet">
<script src="scripts/jquery-3.5.0.min.js"></script>
<script src="scripts/jquery-mobilemenu.min.js"></script>
<script>
$(document).ready(function () {
$('.topnav').mobileMenu({
combine: false,
switchWidth: 600,
prependTo: 'nav#topnav'
});
});
</script>
<!--[if lt IE 9]>
<link rel="stylesheet" href="styles/ie.css" type="text/css" media="all">
<script src="scripts/css3-mediaqueries.min.js"></script>
<script src="scripts/html5shiv.min.js"></script>
<![endif]-->
<script language="javascript">
function changeTextToAAA(id)
{
document.getElementById(id).innerHTML = '[Show]';
}
function changeTextToBBB(id)
{
document.getElementById(id).innerHTML = '[Hide]';
}
</script>
<script type="text/javascript">
/***********************************************
* Contractible Headers script- © Dynamic Drive (www.dynamicdrive.com)
* This notice must stay intact for legal use. Last updated Mar 23rd, 2004.
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/
var enablepersist="off" //Enable saving state of content structure using session cookies? (on/off)
var collapseprevious="no" //Collapse previously open content when opening present? (yes/no)
if (document.getElementById){
document.write('<style type="text/css">')
document.write('.switchcontent{display:none;}')
document.write('</style>')
}
function getElementbyClass(classname){
ccollect=new Array()
var inc=0
var alltags=document.all? document.all : document.getElementsByTagName("*")
for (i=0; i<alltags.length; i++){
if (alltags[i].className==classname)
ccollect[inc++]=alltags[i]
}
}
function contractcontent(omit){
var inc=0
while (ccollect[inc]){
if (ccollect[inc].id!=omit)
ccollect[inc].style.display="none"
inc++
}
}
function expandcontent(cid){
if (typeof ccollect!="undefined"){
if (collapseprevious=="yes")
contractcontent(cid)
document.getElementById(cid).style.display=(document.getElementById(cid).style.display!="block")? "block" : "none"
}
}
function revivecontent(){
contractcontent("omitnothing")
selectedItem=getselectedItem()
selectedComponents=selectedItem.split("|")
for (i=0; i<selectedComponents.length-1; i++)
document.getElementById(selectedComponents[i]).style.display="block"
}
function get_cookie(Name) {
var search = Name + "="
var returnvalue = "";
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(search)
if (offset != -1) {
offset += search.length
end = document.cookie.indexOf(";", offset);
if (end == -1) end = document.cookie.length;
returnvalue=unescape(document.cookie.substring(offset, end))
}
}
return returnvalue;
}
function getselectedItem(){
if (get_cookie(window.location.pathname) != ""){
selectedItem=get_cookie(window.location.pathname)
return selectedItem
}
else
return ""
}
function saveswitchstate(){
var inc=0, selectedItem=""
while (ccollect[inc]){
if (ccollect[inc].style.display=="block")
selectedItem+=ccollect[inc].id+"|"
inc++
}
document.cookie=window.location.pathname+"="+selectedItem
}
function do_onload(){
uniqueidn=window.location.pathname+"firsttimeload"
getElementbyClass("switchcontent")
if (enablepersist=="on" && typeof ccollect!="undefined"){
document.cookie=(get_cookie(uniqueidn)=="")? uniqueidn+"=1" : uniqueidn+"=0"
firsttimeload=(get_cookie(uniqueidn)==1)? 1 : 0 //check if this is 1st page load
if (!firsttimeload)
revivecontent()
}
}
if (window.addEventListener)
window.addEventListener("load", do_onload, false)
else if (window.attachEvent)
window.attachEvent("onload", do_onload)
else if (document.getElementById)
window.onload=do_onload
if (enablepersist=="on" && document.getElementById)
window.onunload=saveswitchstate
</script>
</head>
<body>
<div class="wrapper row1">
<header id="header">
<hgroup>
<h1><a href="index.html"><span>P</span>rof. <span>K</span>evin <span>T</span>ang</a>, Ph.D.</h1>
</hgroup>
<!-- ################################################################################################ -->
<nav id="topnav">
<ul class="topnav clear">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="CV.html">Curriculum Vitae </a></li>
<li><a href="Research.html">Research</a></li>
<li><a href="Collabrators.html">Collaboration</a></li>
<li class="last"><a href="Tools.html">Tools</a></li>
</ul>
</nav>
<div class="clear"></div>
</header>
</div>
<!-- content -->
<div class="wrapper row2">
<div id="container">
<!-- ################################################################################################ -->
<!-- <div id="content"> -->
<!-- ########################################################################################## -->
<!--<p class="center"><img src="images/CV/Tang_Kevin_CV_head.JPG" alt="CV Profile Picture" width="42" height="42"></p>-->
<h7 id="top"></a>
<!-- <div class="imgholder"> -->
<!-- <img id="image-left" src="mgm_mirage_logo.jpg" alt=""> -->
<!-- <img id="imgl" src="images/CV/Inno finalists logo.jpg" alt="" style="width:20% !important;"> -->
<!-- <img id="imgr" src="images/profile_color.jpg" alt="" style="width:20% !important;"> -->
<!-- </div> -->
<!-- <div class="imgholder"><div class="imgl"><img src="images/CV/Tang_Kevin_CV_head.JPG" alt="" width="50%" height="50%"></div><div class="imgr"><img src="images/CV/Inno finalists logo.jpg" alt="" width="50%" height="50%"></div></div>-->
<!-- <section><p style = "text-align:center;font-size:1.3em;">PhD (UCL), MEng (Cantab), MA (Cantab & UCL), CMALT</p></section> -->
<p class="center"><p style = "text-align:center;font-size:1.3em;">[Click <a href="Files/CV/Tang_Kevin_CV.pdf" download>HERE</a> to download the CV (pdf)]</p></p>
<!-- <embed src="Files/CV/Tang_Kevin_CV.pdf#toolbar=0&navpanes=0&scrollbar=1" width="760" height="550"> -->
<embed src="Files/CV/Tang_Kevin_CV.pdf#toolbar=0&navpanes=0&scrollbar=1" width="1200" height="550">
<!--<p class="center"><p style = "text-align:center;font-size:1.3em;">[<a href="Files/CV/Tang_CV_Sep_2016.pdf" download>Download</a> or <a href="Files/CV/Tang_CV_Sep_2016.pdf" target="_blank">View</a> the CV (pdf)]</p></p>-->
<!--
<iframe id="CVdisplay" style="border:1px solid #666CCC" title="" src="Files/CV/Tang_CV_Sep_2016.pdf" frameborder="1" scrolling="auto" height="1100" width="800" >
<object data="Files/CV/Tang_CV_Sep_2016.pdf" type="application/pdf">
<embed src="Files/CV/Tang_CV_Sep_2016.pdf" type="application/pdf" />
</object>
</iframe>
-->
<!-- ########################################################################################## -->
<!-- </div> -->
<!-- right column -->
<!-- <aside id="right_column"> -->
<!-- ########################################################################################## -->
<!-- <section> -->
<!-- <h2 id="Contact Details">Contact Details</h2> -->
<!-- <address> -->
<!-- <p><i class="fa fa-at" style=color:rgb(29,57,127);></i> <a href="mailto:[email protected]" target="_blank">[email protected]</a></p><p><i class="fa fa-envelope" style=color:rgb(29,57,127);></i> -->
<!-- Linguistics Department<br> -->
<!-- University of Florida<br> -->
<!-- P.O. Box 115454<br> -->
<!-- Gainesville, FL 32611-5454<br> -->
<!-- <i class="fa fa-map-marker" style=color:rgb(29,57,127);></i> -->
<!-- Linguistics Department<br> -->
<!-- University of Florida<br> -->
<!-- 4131 Turlington Hall<br> -->
<!-- Gainesville, FL 32611-5454<br> -->
<!-- [<a href="https://goo.gl/maps/fSpVhqpcodWa6VSQ7" target="_blank"><i class="fa fa-map-o" style=color:rgb(29,57,127);></i> Map</a>]</p> -->
<!-- <br><i class="fa fa-twitter" style=color:rgb(29,57,127);></i> <a href="https://twitter.com/tang_kevin" class="twitter-follow-button" data-show-count="false">Follow @tang_kevin</a> -->
<!-- <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script></p> -->
<!-- <i class="fa fa-link" style=color:rgb(29,57,127);></i> <a href="www.kevintang.org" target="_blank">www.kevintang.org</a><br> -->
<!-- Departmental: TBD<br> -->
<!-- <i class="fa fa-linkedin" style=color:rgb(29,57,127);></i> <a href="https://www.linkedin.com/in/kevintangcantab/" target="_blank">kevintangcantab</a><br> -->
<!-- <a href="https://orcid.org/0000-0001-7382-9344" target="orcid.widget" rel="noopener noreferrer" style="vertical-align:top;"><img src="https://orcid.org/sites/default/files/images/orcid_16x16.png" style="width:1em;margin-right:.5em;" alt="ORCID iD icon">orcid.org/0000-0001-7382-9344</a><br> -->
<!-- <font color=#156aeb>G</font><font color=#da4531>o</font><font color=#ffba02>o</font><font color=#176dee>g</font><font color=#176dee>l</font><font color=#019e5a>e</font> Scholar: <a href="https://goo.gl/pcjXNX" target="_blank">goo.gl/pcjXNX</a><br> -->
<!-- Academia.edu: <a href="https://florida.academia.edu/KevinTang" target="_blank">goo.gl/TcAju8</a><br> -->
<!-- ResearchGate.net: <a href="https://www.researchgate.net/profile/Kevin_Tang" target="_blank">goo.gl/4qCxwR</a><br> -->
<!-- </address> -->
<!-- </section> -->
<!-- /section -->
<!-- /section -->
<!-- ########################################################################################## -->
<!-- </aside> -->
<!-- ################################################################################################ -->
<div class="clear"></div>
</div>
</div>
<!-- Footer -->
<div class="wrapper row3">
<footer id="footer" class="clear">
<p class="fl_left">Copyright © 2014–<script language="javascript" type="text/javascript">
var today = new Date()
var year = today.getFullYear()
document.write(year)
</script> – All Rights Reserved – <a href="index.html">Kevin Tang</a></p>
</footer>
</div>
</body>
</html>