-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (41 loc) · 2.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Simon Tian's Personal Website</title>
<link rel="stylesheet" href="styles/normalize.css" />
<link rel="stylesheet" href="styles/main.css" />
<link rel="icon" href="images/favicon.png" />
</head>
<body id="about">
<header>
<h1>Simon Tian</h1>
</header>
<nav>
<ul>
<li><a href="index.html">About</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="resume.html">Resume</a></li>
</ul>
</nav>
<main>
<h1>About</h1>
<img src="images/avatar.jpg" />
<p>
Hi! My name is Rongxin Tian, and you can call me Simon. I come from Yangzhou, a small city in China. Now I am a sophomore majoring in computer science in Rose-Hulman Institute of Technology.
</p>
<p>
I have lots of hobbies, such as painting, swimming, listening to music, watching movies, playing games and so on. I have been learning painting since I was five years old, and now I will draw something whenever I have time. At the same time, I have been swimming for 10 years. I will go swimming no matter in spring, summer, autumn or winter. I regard swimming as a good fitness program and I really like the feeling of being free in the water. Also, I am obsessed with listening to music and playing video games. Pure music and folk songs are my favorite music types and I like fps (first-person shooting) and card video games as well.
</p>
<p>
This website is the project I created when taking the CSSE280 course in our school. It is used to introduce myself, the projects I have done, and my resume. Now I treat it as my own personal website, if there are things I want to add in the future, such as new looks or fun things, etc. I will keep updating and sharing.
</p>
</main>
<footer>
You can email me at tianr@rose-hulman.edu
</footer>
<script src="scripts/main.js"></script>
</body>
</html>