Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.html
More file actions
Latest commit
85 lines (65 loc) · 2.98 KB
/
Copy pathteam.html
File metadata and controls
85 lines (65 loc) · 2.98 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
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
<!doctype html>
<html>
<head>
<metacharset="UTF-8">
<metaname="viewport" content="width=device-width, initial-scale=1.0">
<linkhref="./style/output.css" rel="stylesheet">
<scriptsrc="scripts/generatePeople.js" type="text/javascript"></script>
<scriptsrc="scripts/d3.v7.min.js" type="text/javascript"></script>
</head>
<body>
<divclass="max-w-7xl mx-auto px-2 sm:px-6 lg:px-8">
<divclass="relative flex items-end justify-between h-52">
<divclass="flex-1 flex items-end justify-center sm:items-stretch sm:justify-start">
<divclass="flex-shrink-0 flex items-end ">
<imgclass="block h-36 w-auto" src="img/logo.png" alt="Workflow">
<!-- <span class="text-xl">DataVis Lab</span> -->
</div>
<divclass="flex items-end sm:block sm:ml-6 px-10">
<divclass="flex h-36 space-x-4 items-end">
<ahref="index.html" class="text-gray-900 hover:bg-gray-900 hover:text-amber-500 px-3 py-2 rounded-md text-lg font-medium no-underline" >Home</a>
<ahref="#" class="bg-amber-500 px-3 py-2 rounded-md text-lg font-medium no-underline">Team</a>
<ahref="papers.html" class="text-gray-900 hover:bg-gray-900 hover:text-amber-500 px-3 py-2 rounded-md text-lg font-medium no-underline">Publications</a>
<ahref="software.html" class="text-gray-900 hover:bg-gray-900 hover:text-amber-500 px-3 py-2 rounded-md text-lg font-medium no-underline">Software</a>
</div>
</div>
</div>
</div>
</div>
<divclass="max-w-7xl mx-auto p-10 sm:px-6 lg:px-8">
<h2class="text-gray-800 text-xl font-bold pt-5 m-3 pl-2">@ Clemson</h2>
<divclass="grid grid-cols-3 gap-4" id="people-content">
</div>
</div>
<!-- CO-ADVISE -->
<divclass="max-w-7xl mx-auto p-2 sm:px-6 lg:px-8">
<h2class="text-gray-800 text-xl font-bold pt-5 m-3 pl-2">Students co-advised at other institutions</h2>
<divclass="grid grid-cols-6 gap-4">
<divclass="relative rounded-sm bg-white ">
<divclass="flex items-center relative">
<pclass="text-gray-600 text-xs pl-2 m-3">
<imgsrc="img/people/YueHui.jpg" class="w-28 rounded-full absolute z-30 shadow-lg grayscale hover:grayscale-0" alt="">
</p>
</div>
<divclass="px-2 py-24 pb-4">
<pclass="text-gray-600 text-xs pl-2 m-3">
<spanclass="font-bold"><ahref="https://geog.umd.edu/gradprofile/qian/yuehui" style="text-decoration: none">YueHui Qian</a></span><br>
<span>PhD student @ UMD<br></span>
<span>Co-advised with Prof. Leila De Floriani</span>
</p>
</div>
</div>
</div>
</div>
<!-- ALUMNI -->
<divclass="max-w-7xl mx-auto p-2 sm:px-6 lg:px-8">
<h2class="text-gray-800 text-xl font-bold pt-5 m-3 pl-2">Alumni</h2>
<divid="alumni-content" class="grid grid-cols-6 gap-4">
</div>
</div>
<script>
generatePeople()
generateAlumni()
</script>
</body>
</html>