-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCV.html
More file actions
122 lines (104 loc) · 3.8 KB
/
CV.html
File metadata and controls
122 lines (104 loc) · 3.8 KB
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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="icon.png" type="image/png">
<title>CV - Yi-Ting Tu (凃懿庭)</title>
<meta property="og:type" content="website">
<meta property="og:url" content="https://yitingtu.com/CV">
<meta property="og:description" content="Welcome to my personal page!">
<meta property="og:image" content="https://yitingtu.com/ogimage.png">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
<style>
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}
/*
* Globals
*/
/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
color: #333;
text-shadow: none; /* Prevent inheritance from `body` */
}
/*
* Base structure
*/
body {
margin: 0;
padding: 0;
height: 100vh;
display: flex;
flex-direction: column;
}
.cover-container {
max-width: 42em;
}
/*
* Header
*/
.nav-masthead .nav-link {
padding: .25rem 0;
font-weight: 700;
color: rgba(255, 255, 255, .5);
background-color: transparent;
border-bottom: .25rem solid transparent;
}
.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
border-bottom-color: rgba(255, 255, 255, .25);
}
.nav-masthead .nav-link + .nav-link {
margin-left: 1rem;
}
.nav-masthead .active {
color: #fff;
border-bottom-color: #fff;
}
/* PDF viewer styles */
#pdf-container {
flex: 1;
width: 100%;
overflow: hidden;
}
#pdf-viewer {
width: 100%;
height: 100%;
border: none;
}
</style>
</head>
<body class="text-black bg-white">
<div class="d-flex text-center text-white bg-dark" style="height: auto;">
<div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column">
<header class="mb-auto">
<div>
<h5 class="float-md-start mb-0 mt-1" style="color:rgba(255, 255, 255, .5)">Yi-Ting Tu</h5>
<nav class="nav nav-masthead justify-content-center float-md-end">
<a class="nav-link" href="https://yitingtu.com">Home</a>
<a class="nav-link active" aria-current="page" href="#">CV</a>
<a class="nav-link" href="https://yitingtu.com/research">Research</a>
<a class="nav-link" href="https://yitingtu.com/programming">Programming</a>
</nav>
</div>
</header>
</div>
</div>
<div id="pdf-container">
<iframe id="pdf-viewer" src="CV.pdf"></iframe>
</div>
</body>
</html>