forked from xiangyang0608/PersonalWebsiteTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (70 loc) · 3.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Change your WEBSITE TITLE HERE-->
<title>Shannon Q Yu</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="main.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<!-- <script src="index.js"></script> -->
</head>
<body>
<div class="main-container">
<!-- Self introductions -->
<div class="text-intro">
<div class="intro">
<!-- Here's the Big title and the subtitle on the left on the main page -->
<h1>Shannon Qiaorong Yu</h1>
<h2>Hi, I'm Shannon (She/Her), and I'm currently pursuing a Master degree in
Mathematical and Theoretical Physics at University of Oxford.</h2>
</div>
<div class="author">
<!-- Here's some basic information with links -->
<p><i class="fas fa-map-marker-alt"></i> Oxford, UK</p>
<p><i class="fab fa-github"></i> <a href="https://github.com/yqiaorong">Github</a></p>
<p><i class="fas fa-file-alt"></i> <a href="dict/files/qyu_cv.pdf">CV</a></p>
<p><i class="fab fa-linkedin"></i> <a href="https://www.linkedin.com/in/qiaorong-yu-05b3882a8/">LinkedIn</a></p>
</div>
</div>
<!-- Main content page -->
<div class="container">
<!-- Here's the cards on the right. You can add more cards with copy-paste the whole <div class="card"></div> block -->
<div class="card">
<div class="content">
<h2></h2>
<!-- The title on the card.-->
<h3>Research</h3>
<div class="hov">
<!-- The subtitle -->
<!-- <p></p> -->
<!-- Link to the subpage-->
<a href="./pages/research_page/index.html">Read More</a>
</div>
</div>
</div>
<div class="card">
<div class="content">
<h2></h2>
<h3>Art</h3>
<div class="hov">
<a href="./pages/art_page/index.html">Read More</a>
</div>
</div>
</div>
<div class="card">
<div class="content">
<h2></h2>
<h3>Community</h3>
<div class="hov">
<!-- Link to the subpage-->
<a href="./pages/comm_page/index.html">Read More</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>