Skip to content

Commit 4c79726

Browse files
authored
Create initial academic website structure
1 parent 9e653af commit 4c79726

File tree

1 file changed

+87
-0
lines changed

1 file changed

+87
-0
lines changed

index.html

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,88 @@
1+
<!DOCTYPE html>
2+
<html lang="zh-CN">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Shang Gao | Academic Website</title>
7+
<style>
8+
body {
9+
margin: 0;
10+
font-family: Georgia, "Times New Roman", serif;
11+
line-height: 1.7;
12+
color: #1f2937;
13+
background: #f8fafc;
14+
}
15+
.container {
16+
max-width: 860px;
17+
margin: 0 auto;
18+
padding: 48px 24px;
19+
}
20+
h1, h2 {
21+
color: #111827;
22+
}
23+
h1 {
24+
font-size: 2.4rem;
25+
margin-bottom: 8px;
26+
}
27+
.subtitle {
28+
color: #4b5563;
29+
margin-bottom: 32px;
30+
}
31+
section {
32+
background: white;
33+
padding: 24px;
34+
margin-bottom: 20px;
35+
border-radius: 12px;
36+
box-shadow: 0 4px 18px rgba(0,0,0,0.05);
37+
}
38+
a {
39+
color: #0f766e;
40+
text-decoration: none;
41+
}
42+
a:hover {
43+
text-decoration: underline;
44+
}
45+
ul {
46+
padding-left: 20px;
47+
}
48+
</style>
49+
</head>
50+
<body>
51+
<div class="container">
52+
<h1>你的姓名</h1>
53+
<p class="subtitle">
54+
PhD Student in Economics | Structural Transformation | Skill Premium | Automation and Growth
55+
</p>
56+
57+
<section>
58+
<h2>About Me</h2>
59+
<p>
60+
PhD student in Economics at University of Exeter
61+
</p>
62+
</section>
63+
64+
<section>
65+
<h2>Research</h2>
66+
<ul>
67+
<li><strong>Job Market Paper:</strong> 在这里写你的JMP标题</li>
68+
<li><strong>Working Paper 1:</strong> 在这里写论文标题</li>
69+
<li><strong>Working Paper 2:</strong> 在这里写论文标题</li>
70+
</ul>
71+
</section>
72+
73+
<section>
74+
<h2>CV</h2>
75+
<p>
76+
你以后可以把 CV PDF 上传到仓库,然后把链接放在这里。
77+
</p>
78+
</section>
79+
80+
<section>
81+
<h2>Contact</h2>
82+
<p>Email: your_email@example.com</p>
83+
<p>GitHub: <a href="https://github.com/你的用户名">https://github.com/你的用户名</a></p>
84+
</section>
85+
</div>
86+
</body>
87+
</html>
188

0 commit comments

Comments
 (0)