-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkontakt.html
More file actions
93 lines (91 loc) · 4.32 KB
/
kontakt.html
File metadata and controls
93 lines (91 loc) · 4.32 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
<!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 - Contact</title>
<!-- CSS -->
<link rel="stylesheet" href="/css/untilities.css">
<link rel="stylesheet" href="/css/aboutMe.css">
<link rel="stylesheet" href="/css/contact.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">EDUCATION</a></li>
<li><a href="umiejetnosci.html">SKILLS</a></li>
<li><a href="kontakt.html" class="active">CONTACT</a></li>
</ul>
</nav>
</div>
</div>
<!-- Contact -->
<section class="contact">
<div class="container grid grid-1">
<div>
<h1 class="text-center">CONTACT</h1>
</div>
<div class="card flex-end my1">
<div>
<h3 class="sm">Email</h3>
<input id="copyEmail" readonly value="kowalikpatryk.kontakt@gmail.com">
</div>
<div class="copyBtn-div">
<button class="btn-copy"><i class="bi bi-clipboard"></i></button>
</div>
</div>
<div class="card my1">
<h3 class="sm">Contact me on my social media</h3>
<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>
<div class="card my1">
<h3 class="sm">Clause</h3>
<p>
I consent to the processing of my personal data for the purposes of the recruitment process in accordance with Regulation (EU) 2016/679 of the European Parliament and of the Council of 27 April 2016 on the protection of individuals with regard to the processing of personal data and on the free movement of such data and repealing Directive 95/46 / EC (GDPR).
</p>
</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>
<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>
</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>