-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (77 loc) · 2.07 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
<link rel="stylesheet" href="style.css">
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>YKX3 | Sun Yat-sen University</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: #f4f4f4;
color: #333;
}
header {
background: #0056b3;
color: #fff;
padding: 10px 20px;
text-align: center;
}
section {
margin: 20px;
padding: 20px;
background: white;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
footer {
text-align: center;
padding: 10px 20px;
background: #333;
color: #fff;
}
a {
color: #0077cc;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<header>
<h1>ykx3</h1>
<p>Undergraduate Student at Sun Yat-sen University</p>
</header>
<section>
<h2>🎓 Education</h2>
<p>Bachelor in Computer Science, Sun Yat-sen University</p>
</section>
<section>
<h2>🔍 Research Interest</h2>
<p>Focus on Embodied Intelligence.</p>
</section>
<section>
<h2>🧪 Affiliation</h2>
<p>HCP Lab, Sun Yat-sen University</p>
<p>Website: <a href="https://www.sysu-hcp.net/">sysu-hcp.net</a></p>
</section>
<section>
<h2>💼 Skills</h2>
<ul>
<li>Python, C++</li>
<li>Machine Learning, Deep Learning, Robotics</li>
</ul>
</section>
<section>
<h2>📚 Projects</h2>
<p>Details about my projects can be found in the respective repositories on GitHub.</p>
</section>
<footer>
<p>Contact: <a href="mailto:[email protected]">[email protected]</a></p>
</footer>
</body>
</html>