-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (81 loc) · 1.84 KB
/
Copy pathindex.html
File metadata and controls
93 lines (81 loc) · 1.84 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
86
87
88
89
90
91
92
93
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<meta name="description" content="Personal academic homepage of Xuhan Huang">
<title>Xuhan Huang | Xidian University</title>
<style>
body {
max-width: 760px;
margin: 70px auto;
padding: 0 24px;
font-family: Arial, "Microsoft YaHei", sans-serif;
line-height: 1.7;
color: #1f2937;
background: #f7f9fc;
}
main {
padding: 42px;
background: white;
border-radius: 16px;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
h1 {
margin: 0;
color: #174a7e;
font-size: 42px;
}
h2 {
margin-top: 32px;
border-bottom: 1px solid #e5e7eb;
padding-bottom: 8px;
}
.subtitle {
color: #64748b;
font-size: 18px;
}
.tag {
display: inline-block;
margin: 4px;
padding: 5px 12px;
color: #174a7e;
background: #e8f1fb;
border-radius: 20px;
}
a {
color: #1769aa;
}
</style>
</head>
<body>
<main>
<h1>Xuhan Huang</h1>
<p class="subtitle">Student at Xidian University</p>
<p>
I am a student at Xidian University. My research interests
focus on 3D vision and multimodal artificial intelligence.
</p>
<h2>Research Interests</h2>
<p>
<span class="tag">3D Vision</span>
<span class="tag">Point Cloud Understanding</span>
<span class="tag">Octree Representation</span>
<span class="tag">Multimodal LLMs</span>
</p>
<h2>Contact</h2>
<p>
Email:
<a href="mailto:23009200671@stu.xidian.edu.cn">
23009200671@stu.xidian.edu.cn
</a>
</p>
<p>
GitHub:
<a href="https://github.com/Hex671">
github.com/Hex671
</a>
</p>
</main>
</body>
</html>