-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (39 loc) · 1.03 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
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-JZ7EDMT873"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-JZ7EDMT873');
</script>
<meta charset="utf-8" />
<meta name="Description" CONTENT="Yaowen Chen's academic pages including his information about education, work and publications">
<title>Yaowen Chen Academic Page</title>
</head>
<style type="text/css">
.wrapper {
position: relative;
padding-bottom: 65.25%;
padding-top: 30px;
height: 0;
overflow: auto;
-webkit-overflow-scrolling:touch; //<<--- THIS IS THE KEY
border: solid black 1px;
}
.wrapper iframe {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
</style>
<body>
<div class="wrapper">
<iframe src="academic_pages.html" style="border:none"></iframe>
</div>
</body>
</html>