-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
87 lines (82 loc) · 1.95 KB
/
index.html
File metadata and controls
87 lines (82 loc) · 1.95 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shang Gao | Academic Website</title>
<style>
body {
margin: 0;
font-family: Georgia, "Times New Roman", serif;
line-height: 1.7;
color: #1f2937;
background: #f8fafc;
}
.container {
max-width: 860px;
margin: 0 auto;
padding: 48px 24px;
}
h1, h2 {
color: #111827;
}
h1 {
font-size: 2.4rem;
margin-bottom: 8px;
}
.subtitle {
color: #4b5563;
margin-bottom: 32px;
}
section {
background: white;
padding: 24px;
margin-bottom: 20px;
border-radius: 12px;
box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}
a {
color: #0f766e;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
ul {
padding-left: 20px;
}
</style>
</head>
<body>
<div class="container">
<h1>Shang Gao</h1>
<p class="subtitle">
PhD Student in Economics | Structural Transformation | Skill Premium | Automation and Growth
</p>
<section>
<h2>About Me</h2>
<p>
PhD student in Economics at University of Exeter
</p>
</section>
<section>
<h2>Research</h2>
<ul>
<li><strong>Job Market Paper:</strong> Human capital and structural transformation</li>
<li><strong>Working Paper 1:</strong> The scarring effect: how short-run fluctuation affectes long-run structural transformation</li>
</ul>
</section>
<section>
<h2>CV</h2>
<p>
你以后可以把 CV PDF 上传到仓库,然后把链接放在这里。
</p>
</section>
<section>
<h2>Contact</h2>
<p>Email: your_email@example.com</p>
<p>GitHub: <a href="https://github.com/你的用户名">https://github.com/你的用户名</a></p>
</section>
</div>
</body>
</html>