-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMYcv.html
More file actions
81 lines (69 loc) · 1.38 KB
/
MYcv.html
File metadata and controls
81 lines (69 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<meta charset="UTF-8">
<title>Maria Valdez Cabrera</title>
<style>
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
background-color: #B7CFDC;
font-size: 20px;
}
.topnav {
overflow: hidden;
background-color: #385E72;
}
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #6AABD2;
color: black;
}
.topnav a.active {
background-color: #0C4160;
color: white;
}
.Top-column {
width: 60%;
padding-top: 0px;
padding-bottom: 0px;
padding-left: 40px;
padding-right: 0px;
float: left;
}
.Top-column h1 {
margin: 0
}
.Top-column h4 {
margin: 0
}
}
</style>
<script src=""></script>
<body>
<div class="topnav">
<a href="index.html">About</a>
<a href="Research.html">Research</a>
<a href="Teaching.html">Teaching</a>
<a class="active" href="MYcv.html">CV</a>
</div>
<div class="row">
<div class="Top-column">
<h1>Maria Valdez Cabrera (she/her)</h1>
</div>
</div>
<div class="row">
<div class="first-column">
<object data="CV.pdf" type="application/pdf" width="100%" height="700px">
<p>This browser does not have a PDF plugin. Click <a href="CV.pdf"> here </a> to download.</p>
</object>
</div>
</div>
</body>
</html>