-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcv.html
39 lines (38 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="styleM.css">
<meta name="viewport" content="width=500px, initial-scale=0.5, user-scalable=no">
<title>CV - Yassin</title>
</head>
<body>
<header>
<button id="nav-toggle" class="nav-toggle-btn">
<i class="fas fa-bars"></i> <!-- Add appropriate icon for menu -->
</button>
<button id="theme-toggle" class="theme-toggle-btn">
<i class="fas fa-sun"></i>
</button>
<a href="#" class="logo"></a>
<nav>
<a href="index.html">About</a>
<a href="projects.html">Projects</a>
<a href="experience.html">Experience</a>
<a href="cv.html" class="active">Resume</a>
</nav>
</header>
<section class="cv home">
<div class="cv-content">
<h1>My CV</h1>
<p>You can download my CV using the link below:</p>
<a href="./resume/CV.pdf" target="_blank" class="btn">Download CV</a>
</div>
</section>
</body>
<script src="themeToggle.js">
</script>
</html>