-
Notifications
You must be signed in to change notification settings - Fork 0
/
cv.html
46 lines (43 loc) · 1.63 KB
/
cv.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Yuqi">
<meta name="keywords" content="Carnegie Mellon University, Information Systems">
<meta name="description" content="Yuqi professional website">
<title>Yuqi</title>
<link rel="stylesheet" href="style.css">
<script defer src="script.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body onload=" addYear()">
<header>
<h1 id ="webname">Yuqi</h1>
<nav id="myTopnav" class="topnav">
<a href="index.html">Home</a>
<a href="cv.html" class="active">CV</a>
<a href="contact.html">Contact me</a>
<a href="fun.html">For fun</a>
<a href="javascript:void(0);" class="icon" >
<i class="fa fa-bars" onclick="activeNav()"></i>
</a>
</nav>
</header>
<div class="main">
<h2>Curriculum Vitae</h2>
<table>
<tr><th>Name</th><th>Description</th></tr>
<tr><td>first</td><td></td></tr>
<tr><td>second</td><td></td></tr>
</table>
<a href = "Yuqi resume.pdf" target = "_blank">My Resume - PDF version</a>
<p>Hello World!</p>
</div>
<footer>
<p id="copyYear">Yuqi ©</p>
</footer>
</body>
</html>