-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
106 lines (101 loc) · 3.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Peiheng Lu - Personal Webpage</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
}
header {
background-color: #4CAF50;
color: white;
text-align: center;
padding: 1em 0;
}
nav {
text-align: center;
margin: 1em 0;
}
nav a {
margin: 0 15px;
text-decoration: none;
color: #333;
}
section {
padding: 20px;
background-color: white;
margin: 10px auto;
max-width: 800px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
footer {
text-align: center;
padding: 10px;
background-color: #4CAF50;
color: white;
}
.project {
margin-bottom: 20px;
}
</style>
</head>
<body>
<header>
<h1>Peiheng Lu</h1>
<p>Current MSc Advanced Computer Science Student at University of Oxford</p>
</header>
<nav>
<a href="#about">About Me</a>
<a href="#projects">Projects</a>
<a href="#contact">Contact</a>
</nav>
<section id="about">
<h2>About Me</h2>
<p>
Graduated with first class honours from University of Edinburgh, also in Computer Science.
I have worked as a research assistant in the UK Dementia Research Institute, as well as a
computer vision engineer at various firms.
</p>
<p>
Can spend whole days in cinema, love fast cars,
and always enjoy learning new stuff.
</p>
</section>
<section id="projects">
<h2>Projects</h2>
<div class="project">
<h3><a href="https://github.com/UoE-GanJianLab/dynamic-foraging">Dynamic Foraging</a></h3>
<p>Code base for paper Prefrontal cortex leads and enhances functional connectivity with striatum in need of change during flexible behavior</p>
</div>
<div class="project">
<h3><a href="https://github.com/PeihengLu/Project2">Project 2</a></h3>
<p>Brief description of Project 2.</p>
</div>
<div class="project">
<h3><a href="https://github.com/PeihengLu/Project3">Project 3</a></h3>
<p>Brief description of Project 3.</p>
</div>
<!-- Add more projects as needed -->
</section>
<section id="contact">
<h2>Contact</h2>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<label for="name">Name:</label><br>
<input type="text" id="name" name="name" required><br><br>
<label for="email">Email:</label><br>
<input type="email" id="email" name="email" required><br><br>
<label for="message">Message:</label><br>
<textarea id="message" name="message" rows="4" required></textarea><br><br>
<input type="submit" value="Send">
</form>
</section>
<footer>
<p>© 2024 Peiheng Lu</p>
</footer>
</body>
</html>