-
Notifications
You must be signed in to change notification settings - Fork 0
/
people.html
64 lines (46 loc) · 2.13 KB
/
people.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<title>People | Qing Wen</title>
<link rel="stylesheet" href="/assets/libs/bootstrap/bootstrap.min.css">
<script defer src="/assets/libs/fontawesome/all.min.js"></script>
<link rel="stylesheet" href="/assets/css/main.css">
<link rel="apple-touch-icon" sizes="152x152" href="/assets/apple-icon-152x152.png">
<link rel="shortcut icon" href="/assets/favicon.ico">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,700;1,400&display=swap" rel="stylesheet">
</head>
<body>
<div class="col-lg-8 mx-auto p-3 py-md-5">
<header class="d-flex flex-column flex-md-row align-items-center pb-3 mb-5 border-bottom">
<div>
<a href="/" class="d-flex align-items-center text-decoration-none">
<span class="fs-4 fw-bold">Qing Wen</span>
</a>
<a href="/" class="d-flex align-items-center text-decoration-none">
<span></span>
</a>
</div>
<nav class="d-inline-flex mt-2 mt-md-0 ms-md-auto">
<a class="me-3 py-2 text-decoration-none" href="/">home</a>
<a class="me-3 py-2 text-decoration-none" href="/publications">publications</a>
<a class="me-3 py-2 text-decoration-none" href="/projects">projects</a>
<a class="me-3 py-2 text-decoration-none" href="/cv">cv</a>
<a class="me-3 py-2 text-decoration-none" href="/contact">contact</a>
</nav>
</header>
<h3 class="fw-bold border-bottom pb-3 mb-5">People</h3>
<footer class="pt-5 my-5 text-muted border-top">
<div class="row">
<div class="col-md-6 text-end social-media-icons">
<a href="https://github.com/qwenww" class="ms-3 fs-5"><i class="fab fa-github"></i></a>
<a href="https://twitter.com/QQwenww" class="ms-3 fs-5"><i class="fab fa-twitter"></i></a>
<a href="https://uk.linkedin.com/in/qing-wen-ba26a7120" class="ms-3 fs-5"><i class="fab fa-linkedin"></i></a>
</div>
</div>
</footer>
</div>
</body>
</html>