-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
124 lines (104 loc) · 4.04 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
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
122
123
124
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Annie Liu | Home</title>
<!--<link rel="icon" href="images/favicon.gif" type="image/x-icon"/>-->
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link rel="shortcut icon" href="images/favicon.png" type="image/x-icon"/>
<link href="styles/style.css" rel="stylesheet">
</head>
<body class="Home">
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<div class="brand" style="padding: 5px 20px 5px">
<a href="http://www.pku.edu.cn"><img class="thumb" title="Peking University" src="images/pkulogo40.png" /></a>
<a href="/" style="color: #555555">Annie Liu</a>
</div>
<div class="nav-collapse", style="float:right">
<ul class="nav">
<p><li class="active"><a href="/">Home</a></li>
<li class="{{Research}}"><a href="/research">Research</a></li>
<li class="{{Interests}}"><a href="/interests">Interests</a></li></p>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<div class="container mainContainer">
<!-- <div class="content"> -->
<div class="row-fluid">
<div class="span2" style="margin-right:10px; font-size:8pt">
<p><img class="thumb" title="Annie" src="images/head.jpg" /></p>
<ul>
<li>Email: annieliupku (at) gmail (dot) com</li>
<li>Address:
<ul>
<li>1074, Building 48, Peking University</li>
<li>Beijing, China</li>
</ul></li>
<li>Tel: +86-15210594254</li>
</ul>
</div>
<div class="span9" style="border-left-style:solid; border-left-color:#cccccc; border-left-width:1px; padding-left:40px">
<p>I am Annie Liu (刘芳璐), a senior undergraduate student from
Department of Computer Science, School of Electronic Engineering and
Computer Science, <a href="http://www.pku.edu.cn/">Peking University</a>. I am
also taking a double major of Economics in <a href="http://www.nsd.edu.cn/cn/">National School of
Development</a>, Peking University. Currently,
I am a research exchange student in faculty of Electronic Engineering,
of <a href="http://www1.technion.ac.il/en">Technion---Israel Institute of Technology</a>.</p>
<p>My main research interests are distributed systems and computer
networks, which directly affect people's communication and access to
information. However, as an undergraduate and out of my nature to
explore the breadth of the world, I keep myself exposed to a variety
of interesting areas and problems.</p>
<p>Here is my <a href="files/Annie_CV.pdf">CV</a>.</p>
<p>The webside is still under construction. More is coming!</p>
</div>
<!-- </div> -->
</div>
</div>
<div class="footerContainer"><div class="footer">
<p>©Annie Liu, 2013</p>
</div></div>
<script type="text/javascript" src="scripts/libraries.js"></script>
<script type="text/javascript">
$(function() {
var $window = $(window);
var fillWindow = function() {
var $body = $('body');
var windowH = $window.height();
if ($body.height() < windowH) {
$body.height(windowH);
} else {
$body.height('auto');
}
};
$window.resize(fillWindow);
fillWindow();
$('.contentContainer').css('padding-bottom', $('.footerContainer').outerHeight());
});
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-37596663-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>