-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcv.html
More file actions
101 lines (69 loc) · 3.01 KB
/
cv.html
File metadata and controls
101 lines (69 loc) · 3.01 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
<!DOCTYPE html>
<html lang="en">
<title>CV</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel='stylesheet' href='assets/main2.css' type='text/css' media='screen' />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/jpswalsh/academicons@1/css/academicons.min.css">
<script src="https://use.fontawesome.com/35b91d322e.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-151322239-1"></script>
<body>
<!--HEADER-->
<!-- Header -->
<header class="w3-display-container w3-content w3-center" style="max-width:1500px">
<img class="w3-image" src="images/Banner.png" alt="Me" width="1500" height="600">
<div class="w3-display-middle w3-padding-large w3-wide w3-text-light-grey w3-center">
<h1 class="w3-hide-medium w3-hide-small w3-xxxlarge">CURRICULUM VITAE</h1>
<h5 class="w3-hide-large" style="white-space:nowrap">CURRICULUM VITAE</h5>
<h3 class="w3-hide-medium w3-hide-small"><!--SUBTITLE--></h3>
</div>
<!-- Navbar (placed at the bottom of the header image) -->
<!--
<div class="w3-bar w3-light-grey w3-round w3-display-bottommiddle w3-hide-small" style="bottom:-16px">
<a href="index.html" class="w3-bar-item w3-button">Home</a>
<a href="projects.html" class="w3-bar-item w3-button">Projects</a>
<a href="publications.html" class="w3-bar-item w3-button">Publications</a>
<a href="cv.html" class="w3-bar-item w3-button">CV</a>
<a href="photography.html" class="w3-bar-item w3-button">Photography</a>
</div>
-->
<!-- Navbar on small screens -->
<!--
<div class="w3-center w3-light-grey w3-padding-16 w3-hide-large w3-hide-medium">
<div class="w3-bar w3-light-grey">
<a href="index.html" class="w3-bar-item w3-button">Home</a>
<a href="projects.html" class="w3-bar-item w3-button">Projects</a>
<a href="publications.html" class="w3-bar-item w3-button">Pubs</a>
<a href="cv.html" class="w3-bar-item w3-button">CV</a>
<a href="photography.html" class="w3-bar-item w3-button">Photo</a>
</div>
</div>
-->
<div id="nav">
<ul>
<li>
<a href="index.html" class="w3-bar-item w3-button">Home</a>
</li>
<li>
<a href="projects.html" class="w3-bar-item w3-button">Projects</a>
</li>
<li>
<a href="publications.html" class="w3-bar-item w3-button">Pubs</a>
</li>
<li>
<a href="cv.html" class="w3-bar-item w3-button">CV</a>
</li>
<li>
<a href="photography.html" class="w3-bar-item w3-button">Photos</a>
</li>
</ul>
</div>
</header>
<div class="w3-content w3-padding-large w3-margin-top" id="portfolio">
<!-- Images (Portfolio) -->
<embed class="cv" src="assets/cv.pdf" width="800px" height="2100px" />
</div>
</body>
</html>