-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWhoAmI.html
121 lines (90 loc) · 4.9 KB
/
WhoAmI.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset= "utf-8">
<meta name="description" content= "Come learn more about me and the projects I have completed">
<meta name = "keywords" content="Computer Engineer, Tim, Tim Qin, Qin, Programming, Robotics">
<meta name="author" content="Tim Qin">
<title> Who Am I </title>
<link rel ="stylesheet" type = "text/css" href="main.css">
<link href="http://fonts.googleapis.com/css?family=Libre+Baskerville" rel="stylesheet" type="text/css">
<link rel="icon" href="favicon.ico?" type="image/x-icon">
<link href="http://fonts.googleapis.com/css?family=Titillium+Web" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
</head>
<body id = "second">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-64413529-1', 'auto');
ga('send', 'pageview');
</script>
<div id = "navigation_container">
<div id = "logo"> <a href="index.html"> Tim Qin</a> </div>
<!-- add a hover color change -->
<ul id = "nav_bar">
<li>Projects
<ul id="project"> <!-- drop down menu -->
<a href="https://github.com/tim7398/tim7398.github.io"><li> GitHub </li></a>
<a href="#" ><li> Recent Assignments</li></a>
</ul>
</li>
<li id = "about"> About
<ul id="about_drop">
<a href="WhoAmI.html"><li> Who Am I? </li></a>
<a href="travels.html"><li> Travels </li></a>
</ul>
</li>
<li id = "experience"> Experience
<ul id = "experience_drop">
<a href= "Work_Experience.html"><li> Employment History </li></a>
<a href= "Programming_concepts.html"><li> What Do I Know?</li></a>
</ul>
</li>
<!-- <a href = "contact.html">--><li id = "contact" ><span id ="b"> Contact </span> <span id ="a"> Under Construction</span></li><!--</a>-->
</ul>
</div>
<div id = "main-text">
<h1> <u>About Me</u> </h1>
<blockquote id ="pic_me">
<img id = "picture_aboutme" src="image/aboutme.jpg" alt = "snow monkeys" align="left" />
<h2>Snow Monkeys: Nagano, Japan 2015</h2>
</blockquote>
<div >
<p class= "diff_p">My name is Tim Qin and I am currently studying Computer Engineering at Boston University.
I have primarily worked on back end development in C++/C/Java/Python, but I also have experience and interest in front end development. I believe that both aspects of programming have
something different and exciting to offer, whether it is writing an algorithm to analyze a large chunk of data or designing an user interface that is both fun and easy to use.
</p>
<p class= "diff_p">
I have been exposed to many different areas/concepts of programming such as Android Application development, game developement, and hardware programming to name a few.
</p>
<blockquote id ="donut">
<img id="union_donut" src="image/union_donut.jpg" alt="donut" align="right" />
<h2> Maple Bacon Donut from Union Sq Donuts </h2>
</blockquote>
<br>
<p class= "diff_p">
When I am not programming, you can find me at the gym lifting weights, playing basketball, cooking, eating my way through boston, or traveling the world.
</p>
<br />
<ul id= "list"> <span id="favorite_food">Favorite Foods/Restaurants in Boston</span>
<li> 1) Pulled Pork Nachos from Sunset Cantina </li>
<li> 2) Guacamole Bacon Dip and Quesadilla from Lolitas </li>
<li> 3) Anything from YardHouse </li>
<li> 4) chimichanga from BeanTown </li>
<li> 5) Anything from Friendly Toast </li>
</ul>
<ul id= "list2"> <span id="favorite_places">Favorite Travel Destinations</span>
<li> 1) Kyoto, Japan </li>
<li> 2) Singapore </li>
<li> 3) Tokyo, Japan</li>
<li> 4) Sydney, Australia </li>
<li> 5) Xi'An, China </li>
</ul>
</div>
</div>
</body>
</html>