-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (53 loc) · 1.51 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
<!DOCTYPE html>
<html lang="pl-PL">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kocurowy96 Website</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Kocurowy96 | Strona internetowa</h1>
<nav>
<ul>
<li><a href="#">Strona główna</a></li>
<div id="google_translate_element"></div>
</ul>
</nav>
</header>
<main>
<section>
<h2>O mnie</h2>
<p>Witaj! Jestem pasjonatem technologii i twórcą tej strony.</p>
</section>
<section>
<h2>Projekty</h2>
<div class="project-card">
<img src="KocurDOS.jpg" alt="Avatar">
<div>
<h3>KocurDOS</h3>
<p>Emulator autorskiego systemu stworzonego przez Kocurowy96.</p>
</div>
</div>
<div class="project-card">
<img src="KocurAdvRun.jpg" alt="Avatar">
<div>
<h3>KocurAdvRun</h3>
<p>Program ułatwiający zaawansowane uruchamianie programów</p>
</div>
</div>
</section>
</main>
<h1> </h1>
<footer>
<p>© 2025 Moja Strona. Wszystkie prawa zastrzeżone.</p>
</footer>
<!--<script type="text/javascript">
function googleTranslateElementInit() {
new google.translate.TranslateElement({pageLanguage: 'pl'}, 'google_translate_element');
}
</script>
<script type="text/javascript" src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>-->
</body>
</html>