-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (65 loc) · 1.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Jiangshan's Personal Website</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<table>
<tbody>
<tr>
<td><img src="img/no_haste.jpg" alt="诗歌剧可爱捏"></td>
<td>
<h1>Hey, you! This website is still under constructed!</h1>
</td>
</tr>
</tbody>
</table>
<hr>
<table>
<tbody>
<tr>
<td><img src="img/itamiyokanzhiro.jpg" alt="my profile pic" id="me"></td>
<td>
<h1>Jiangshan Gong</h1>
<p><em>Freshman of <a href="https://illinois.edu/">University of Illinois, Urbana-Champaign</a></em></p>
</td>
</tr>
</tbody>
</table>
<hr>
<h3>Education</h3>
<table class="table table-hover">
<thead>
<tr>
<th>Date</th>
<th>Institution</th>
</tr>
</thead>
<tbody>
<tr>
<td>2016~2019</td>
<td>Beijing No.20 High School</td>
</tr>
<tr>
<td>2019~2022</td>
<td>High schoool affiliated to Renmin University (RDFZ)</td>
</tr>
<tr>
<td>2022~2026</td>
<td>Undergraduate, University of Illinois, Urbana-Champaign</td>
</tr>
</tbody>
</table>
<h3>Programming languages I've learned</h3>
<ol>
<li>java</li>
<li>c++</li>
<li>python</li>
</ol>
<p><strong><a href="contact.html">Contact me</a></strong></p>
</body>
</html>