-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
180 lines (166 loc) · 6.16 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Yuchen Zhang
</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
}
header {
background-color: #10263B;
color: white;
text-align: center;
padding: 1em;
}
nav {
background-color: #444;
color: white;
text-align: center;
padding: 0.5em;
}
nav a {
text-decoration: none;
color: white;
margin: 0 1em;
}
main {
padding: 2em;
}
footer {
text-align: center;
padding: 1em;
background-color: #10263B;
color: white;
}
.timeline {
list-style: none;
padding: 0;
}
.timeline li {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 2em;
}
.timeline-content {
flex: 1;
padding: 1em;
background-color: #f0f0f0;
border-radius: 5px;
}
.timeline-year {
flex-basis: 100px;
text-align: center;
background-color: #333;
color: white;
padding: 0.5em;
border-radius: 5px;
}
/* 去除时间轴项之间的底部间距 */
.timeline li:not(:last-child) {
margin-bottom: 0;
}
</style>
</head>
<body>
<header>
<h1>Yuchen Zhang<p>Email:<a href="mailto:stxyz53@nottingham.ac.uk">stxyz53@nottingham.ac.uk</a></p></h1>
</header>
<nav>
<a href="#about">About me</a>
<a href="#Education">Education</a>
<a href="#Project">Project & Research experience</a>
<a href="#Skills">Skills</a>
</nav>
<main>
<section id="about">
<h2>About me</h2>
<p>Hi, I'm Yuchen Zhang, a Sensory Science 2nd-year PhD candidate at the University of Nottingham.
My PhD project is about consumer emotional responses towards sustainable foods.
The first study of my PhD involves an online survey to investigate the impact of sharing environmental information on consumer perception of protein-based products, including plant-based burger, edible insect burger and lab-grown beef burger, as well as conventional beef burger as a control sample.
The cross-cultral element will also involved in my second research. </p><p>Nice to meet you!</p>
</section>
<section id="Education">
<h2>Education</h2>
<ul class="timeline">
<li>
<div class="timeline-content">
<h3>PhD candidate</h3>
<p>University of Nottingham<br>Sensory Science, School of Bioscience <br>Nottingham, UK</p>
</div>
<div class="timeline-year">
FEB. 2022 - FEB. 2026
</div>
</li> <li>
<div class="timeline-content">
<h3>Master of Research</h3>
<p>University of Nottingham<br>Sensory Science, School of Bioscience <br>Nottingham, UK </p>
</div>
<div class="timeline-year">
SEP. 2020 - FEB. 2022
</div>
</li><li>
<div class="timeline-content">
<h3>Bachelor of Science</h3>
<p>University of Reading<br>BSc Food Technology with Bioprocessing, Department of Food and Nutritional Sciences<br>Reading, UK </p>
</div>
<div class="timeline-year">
SEP. 2018 - SEP. 2020
</div>
</ul>
</section>
<section id="Project">
<h2>Project & Research Experience</h2>
<ul class="timeline">
</li><li>
<div class="timeline-content">
<h3>Sensory Lab Demonstrator</h3>
<p> This demonstrator work is continuing ongoing during my PhD. It
includes supporting the University of Nottingham Sensory Science
Center in various of teaching practical activities.
</p>
</div>
<div class="timeline-year">
FEB. 2022 - present
</div>
<li>
<div class="timeline-content">
<h3>Kiwifruit Study</h3>
<p>Investigating UK consumer emotional responses evoked by kiwifruits with implicats emotion measurment and
Magnetic Resonance Imaging (MRI) methods. </p>
</div>
<div class="timeline-year">
APR.2023 - JUL. 2023
</div>
</li> <li>
<div class="timeline-content">
<h3>Master Research</h3>
<p>My Master explored consumer behaviour looking at motivations and
barriers for Chinese consumers when when adopting sustainable
diets. An online questionnaire was conducted in Shanghai, China, and
recruited over 778 Chinese consumers. This
research is part of big cross-cultural survey, where data among UK,
Australia and China were compared </p>
</div>
<div class="timeline-year">
SEP. 2020 - SEP. 2021
</div>
</section>
<section id="Skills">
<h2>Skills</h2>
<p>Data Analysis (SPSS, XLSTAT, Prism Graph, NVIVO)</p>
<p>Bilinguals in Mandarin and English</p>
<p>Project management</p>
</section>
</main>
<footer>
<p>© Yuchen Website 2023 All rights reserved.</p>
</footer>
</body>
</html>