-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathedukacja.html
More file actions
110 lines (108 loc) · 4.53 KB
/
edukacja.html
File metadata and controls
110 lines (108 loc) · 4.53 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
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Patryk Kowalik - Education</title>
<!-- CSS -->
<link rel="stylesheet" href="/css/untilities.css">
<link rel="stylesheet" href="/css/aboutMe.css">
<link rel="stylesheet" href="/css/edu.css">
<!-- FONT LINK IMPORT -->
<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=Poppins&display=swap" rel="stylesheet">
<!-- ICONS LINK -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.0/font/bootstrap-icons.css">
<!-- ANOTHER LINKS -->
<link rel="icon" type="image/png" sizes="16x16" href="/img/favicon-16x16.png">
</head>
<body>
<!-- Navbar -->
<div class="navbar">
<div class="container">
<nav>
<button class="btnMenu btn" id="btnMenu">
<i class="bi bi-list"></i>
</button>
<ul class="nav-ul" id="nav-ul">
<li><a href="index.html">ABOUT ME</a></li>
<li><a href="edukacja.html" class="active">EDUCATION</a></li>
<li><a href="umiejetnosci.html">SKILLS</a></li>
<li><a href="kontakt.html">CONTACT</a></li>
</ul>
</nav>
</div>
</div>
<!-- Education -->
<section class="edu-page py2">
<div class="container flex">
<h1 class="py2">EDUCATION & ACHIEVEMENTS</h1>
<div class="card">
<h2>
High schoold
</h2>
<p>
TEB Technical School Education <br>
course: <br> IT technician <br>
Jastrzębie Zdrój <br>
2018 - 2022
</p>
</div>
<div class="card">
<h2>
Courses
</h2>
<ul>
<li>Cisco course <br> IT Essentials: <br> PC Hardware and Software <br> wynik: 75% <br> 17.02.2020 </li>
</ul>
</div>
<div class="card">
<h2>
Certificates
</h2>
<ul>
<li>IT technician<br> Passing the <br> EE.08 & EE.09
professional exams</li>
<li>ITA - 108 Technologie sieciowe</li>
<li>ITA - 103 Aplikacje internetowe</li>
<li>ITA - 107 Systemy operacyjne</li>
<li>ITA - 108 Technologie sieciowe</li>
</ul>
</div>
<div class="card">
<h2>
Internships & Apprenticeships
</h2>
<ul>
<li>Monthly practice at <a href="https://xybryzt.pl/">xybryzt</a> working with CMS - WordPress. The website I created <a href="https://golebie-ziola.pl"/>www.golebie-ziola.pl</a></li>
</ul>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer py5">
<div class="container grid grid-3">
<div>
<h1>CV Patryk Kowalik</h1>
<p>Copyright © 2022</p>
</div>
<nav>
<ul>
<li><a href="index.htmL">ABOUT ME</a></li>
<li><a href="edukacja.html">EDUCATION</a></li>
<li><a href="umiejetnosci.html">SKILLS</a></li>
<li><a href="kontakt.html">CONTACT</a></li>
</ul>
</nav>
<div class="social">
<a href="https://github.com/Patryk1313"><i class="bi bi-github"></i></a>
<a href="https://www.linkedin.com/in/patryk-kowalik-778937231/"><i class="bi bi-linkedin"></i></a>
<a href="https://www.instagram.com/patrykkowalik__/"><i class="bi bi-instagram"></i></a>
</div>
</div>
</footer>
<!-- Script -->
<script src="/script.js"></script>
</body>
</html>