-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcv.html
53 lines (53 loc) · 1.69 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
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CV - PhD Blog</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="cv.html">CV</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<h1>Curriculum Vitae</h1>
</header>
<main>
<section>
<h2>Education</h2>
<p><strong>PhD in Your Field</strong>, University Name, Year - Present</p>
<p><strong>Master's in Your Field</strong>, University Name, Year - Year</p>
<p><strong>Bachelor's in Your Field</strong>, University Name, Year - Year</p>
</section>
<section>
<h2>Research Experience</h2>
<p><strong>Research Assistant</strong>, University Name, Year - Present</p>
<p>Description of your research work and responsibilities.</p>
</section>
<section>
<h2>Publications</h2>
<ul>
<li><strong>Title of Publication</strong>, Journal Name, Year</li>
<li><strong>Title of Publication</strong>, Journal Name, Year</li>
</ul>
</section>
<section>
<h2>Skills</h2>
<ul>
<li>Skill 1</li>
<li>Skill 2</li>
<li>Skill 3</li>
</ul>
</section>
</main>
<footer>
<p>© 2024 My PhD Blog</p>
</footer>
</body>
</html>