-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (39 loc) · 1.75 KB
/
index.html
File metadata and controls
43 lines (39 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-R76VSBCFWX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-R76VSBCFWX');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Damian Markowski - Senior iOS Developer and Technical Leader</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div class="container">
<header>
<h1 class="site-title">Hello 👋 I'm Damian Markowski</h1>
</header>
<main>
<section class="description-section">
<p>💻 I'm a results-driven Senior iOS Developer and Technical Leader. You may read more about my professional experience on <a href="https://www.linkedin.com/in/markowskidamian/" target="_blank">LinkedIn</a>.</p>
<p>📱 I post about building digital products and services and IT in general on <a href="https://x.com/dammarkowski" target="_blank">X</a>.</p>
<p>♛ I like playing chess. Let's play on <a href="https://www.chess.com/member/damianmarkowski" target="_blank">Chess.com</a>.</p>
</section>
</main>
<footer>
<p><a href="mailto:contact@damianmarkowski.com">contact@damianmarkowski.com</a></p>
<p>© 2013-<span id="currentYear"></span> Damian Markowski. All rights reserved.</p>
</footer>
</div>
<script>
// Set current year in footer
document.getElementById('currentYear').textContent = new Date().getFullYear();
</script>
</body>
</html>