-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresume.html
97 lines (87 loc) · 3.71 KB
/
resume.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VenciDev - Resume</title>
<!-- Google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="style-global.css">
<link rel="stylesheet" href="style-resume.css">
<!--Nav bar icon from Font Awesome website-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<!-- Navigation bar -->
<nav class="navbar">
<div class="hamburger" onclick="toggleMenu()">☰</div>
<ul class="navbar-menu">
<li class="nav-item">
<a class="nav-link" href="index.html">
<i class="nav-icon fa-solid fa-house"></i>Home
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="resume.html">
<i class="nav-icon fa-solid fa-book"></i>Resume
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">
<i class="nav-icon fa-solid fa-envelope"></i>Contact
</a>
</li>
</ul>
</nav>
<!-- Main content container -->
<div class="container resume-container">
<div class="header">
<img src="./CV-photo.jpeg" alt="Ventsislav Zahariev">
<div>
<h1>Ventsislav Zahariev</h1>
<h2>Aspiring Software Developer</h2>
</div>
</div>
<div class="grid-container">
<div class="section grid-item">
<h3>Professional Summary</h3>
<p>Currently working as a legal assistant with a growing interest in programming, skilled in both
front-end and back-end development. Proficient in JavaScript, HTML, and CSS, and continuously
advancing my skills through hands-on projects and self-study.</p>
</div>
<div class="section grid-item">
<h3>Education</h3>
<p>SoftUni - Software Engineering Program - present</p>
<p>New Bulgarian University - Bachelor of Political Science - 2020</p>
</div>
<div class="section grid-item">
<h3>Skills</h3>
<ul>
<li><strong>Programming:</strong> JavaScript (Advanced), Python (Fundamentals)</li>
<li><strong>Web Development:</strong> HTML5, CSS3, Bootstrap, Static Website Creation</li>
<li><strong>Project Management:</strong> Git and GitHub</li>
</ul>
</div>
<div class="section grid-item">
<h3>Certifications</h3>
<ul>
<li>HTML Essential Training</li>
<li>JavaScript: Classes & Functions</li>
<li>Python - LinkedIn Learning & SoftUni</li>
<li>SQL: Basic - LinkedIn Learning</li>
<li>English B2 - New Bulgarian University</li>
</ul>
</div>
</div>
<a href="contact.html" class="button">Contact</a>
<a href="cv.pdf" download class="button">Download CV</a>
</div>
<footer class="resume-footer">
© 2024 VenciDev | All rights reserved
</footer>
<script src="menu.js"></script> <!--JS-->
</body>
</html>