-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhonors.html
137 lines (134 loc) · 4.54 KB
/
honors.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shiyi Ding's Personal Webpage</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
color: #333;
}
header {
background: #0073e6;
color: #fff;
padding: 10px 0;
text-align: center;
}
.container {
width: 80%;
margin: 20px auto;
}
nav {
background: #f4f4f4;
padding: 10px;
margin-bottom: 20px;
width: 100%;
}
nav ul {
list-style: none;
padding: 0;
display: flex;
justify-content: space-around;
}
nav ul li {
margin: 0;
}
nav ul li a {
text-decoration: none;
color: #333;
padding: 5px 10px;
}
nav ul li a:hover {
background: #ddd;
}
.contact-info {
text-align: center;
margin-bottom: 20px;
}
.contact-info a {
color: #0073e6;
text-decoration: none;
}
.contact-info a:hover {
text-decoration: underline;
}
.section {
margin-bottom: 40px;
width: 100%;
}
.section h2 {
border-bottom: 2px solid #0073e6;
padding-bottom: 5px;
}
.honor-list {
list-style: none;
padding: 0;
}
.honor-item {
margin-bottom: 15px;
}
.honor-item span {
font-weight: bold;
}
.award-organization {
font-style: italic;
}
.award-year {
text-align: right;
color: #777;
}
</style>
</head>
<body>
<header>
<h1>Shiyi (Beth) Ding</h1>
<p>Master's at University of Chinese Academy of Sciences</p>
</header>
<div class="container">
<div class="contact-info">
<p><a href="mailto:[email protected]">[email protected]</a> | <a href="https://www.linkedin.com/in/shiyi-ding" target="_blank">LinkedIn</a> | <a href="https://github.com/Shiyi-D" target="_blank">GitHub</a> | <a href="https://www.kaggle.com/infinity2118" target="_blank">Kaggle</a></p>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="education.html">Education</a></li>
<li><a href="experience.html">Experience</a></li>
<li><a href="research.html">Research</a></li>
<li><a href="honors.html">Honors and Awards</a></li>
</ul>
</nav>
<div class="section">
<ul class="honor-list">
<li class="honor-item">
<span>2nd Prize</span>
<p class="award-organization">The 19th "China Optical Valley · Huawei Cup" China Graduate Mathematical Modeling Competition
<p class="award-year">Jan 2023</p>
<li class="honor-item">
<span>Outstanding Graduate</span>
<p class="award-organization">Provincial Education Department & Central South University
<p class="award-year">June 2022</p>
<li class="honor-item">
<span>Silver Award</span>
<p class="award-organization">National College Student Market Survey and Analysis Competition, China
<p class="award-year">May 2021</p>
<li class="honor-item">
<span>Meritorious Winner</span>
<p class="award-organization">The Mathematical Contest in Modeling (MCM), America
<p class="award-year">Apr 2021</p>
<li class="honor-item">
<span>School-level 2nd Scholarships</span>
<p class="award-organization">Central South University (CSU)
<p class="award-year">2018 - 2022</p>
<li class="honor-item">
<span>Fifth place in preliminary round (5/4337)</span>
<p class="award-organization">Global AI Innovation Contest (Chinese Association for Artificial Intelligence, CAAI)
<p class="award-year">Apr 2021</p>
</ul>
</div>
</div>
</body>
</html>