-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·87 lines (73 loc) · 3.16 KB
/
index.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
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="utf-8" />
<meta name="author" content="Sebastian Dolata" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Kilka informacji na mój temat." />
<title>Sebastian Dolata - Software Engineer</title>
<link rel="stylesheet" href="style/style.css" type="text/css" />
<link rel="shortcut icon" href="images/android-app.webp" type="image/x-icon" />
<link rel="stylesheet" href="style/OpenSans.css" />
</head>
<body onload="insertAge()">
<nav>
<div class="width-50 set-float height-100" id="empty">
<img id="menu-icon" src="images/menu.webp" alt="menu" />
</div>
<div class="width-50 set-float height-100" id="menu">
<ul>
<li><a href="#about-me" id="me">O MNIE</a></li>
<li><a href="portfolio.html">PORTFOLIO</a></li>
<li><a href="contact.html">KONTAKT</a></li>
</ul>
</div>
<div class="clear-float"></div>
</nav>
<header>
<h1>
Sebastian Dolata<br />
Software Engineer
</h1>
</header>
<main>
<article>
<h2 id="about-me">O mnie</h2>
<section class="width-60 set-float">
<p>
Cześć, mam <span id="age"></span> lat i interesuję się wszystkim związanym z informatyką, matematyką i szeroko pojętymi naukami ścisłymi. Głównie programuję w Javie, Kotlinie, JavaScripcie, TypeScripcie, a gdy trzeba to czasami w PHP lub C++. Chętnie przyjmuję zlecenia i nie boję się podejmować nowych wyzwań (chyba że chodzi o CSS). Lista z umiejętnościami będzie rozwijana, jak mi się zachce, i tak nikt na to nie patrzy.
</p>
</section>
<section class="width-40 set-float">
<img src="images/me.webp" alt="moje zdjęcie" />
</section>
<div class="clear-float"></div>
</article>
<article>
<h2>Moje umiejętności</h2>
<section class="width-100" id="skills">
<img class="width-20" src="images/java.webp" alt="java" />
<img class="width-20" src="images/spring.webp" alt="spring" />
<img class="width-20" src="images/hibernate.webp" alt="hibernate" />
<img class="width-20" src="images/mysql.webp" alt="mysql" />
<img class="width-20" src="images/html.webp" alt="html" />
<img class="width-20" src="images/css.webp" alt="css" />
<img class="width-20" src="images/js.webp" alt="js" />
<img class="width-20" src="images/git.webp" alt="git" />
<img class="width-20" src="images/linux.webp" alt="linux" />
<img class="width-20" src="images/android.webp" alt="android" />
<img class="width-20" src="images/bash.webp" alt="bash" />
<img class="width-20" src="images/ctf.webp" alt="ctf" />
<img class="width-20" src="images/maven.webp" alt="maven" />
<img class="width-20" src="images/gradle.webp" alt="gradle" />
</section>
</article>
</main>
<footer>
<p>Sebastian Dolata i Julia Włodarczyk © 2022-2023</p>
</footer>
<button id="scrollBtn" title="Go to top"></button>
<script src="script/jquery-3.6.2.min.js"></script>
<script src="script/script.js"></script>
</body>
</html>