-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (53 loc) · 2.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fenghao Li</title>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" href="style.css"> <!-- Link to external CSS -->
</head>
<body>
<div class="container">
<header>
<h1>Fenghao Li</h1>
</header>
<main>
<section style="display: flex; flex-direction: row; justify-content: space-between; align-items: center;">
<div style="padding-right: 20px;">
<p>Hello! I'm Fenghao Li, a third-year undergraduate student.Hello! I'm Fenghao Li, a third-year undergraduate studentHello! I'm Fenghao Li, a third-year undergraduate student.Hello! I'm Fenghao Li, a third-year undergraduate student</p>
<p>You can view my resume <a href="resume.pdf">here</a>.</p>
</div>
<img src="./photo.jpg" alt="Fenghao Li" style="max-width: 170px; height: auto;">
</section>
<section>
<h2>Selected Awards</h2>
<ul>
<!-- <li>1st place @ 45th Annual ICPC World Finals</li> -->
</ul>
</section>
<section>
<h2>Publications</h2>
<ul>
<li>
<!-- <div class="publication-title"><a href="https://arxiv.org/abs/2406.11838.pdf">Autoregressive
Image Generation without Vector Quantization</a></div>
<div class="publication-info">Tianhong Li, Yonglong Tian, He Li, Mingyang Deng, Kaiming He |
NeurIPS 2024 (Spotlight). </div> -->
</li>
</ul>
</section>
<section id="projects">
<h2>Projects</h2>
<p>I have lots of random thoughts, so I implemented many projects.</p>
<ul>
<!-- <li>
<div class="publication-title"><a href="http://goodchess.top">Good chess</a></div>
<div class="publication-info">A great chess game, as the name suggests.</div>
</li> -->
</ul>
</section>
</main>
</div>
</body>
</html>