-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
73 lines (63 loc) · 2.86 KB
/
Copy pathabout.html
File metadata and controls
73 lines (63 loc) · 2.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Meta Tags -->
<meta name="author" content="Luki">
<meta name="keywords" content="developer, programmer, Discord bot, web app, projects, Luki, Lukiblokck, portfolio, coding, technology, about me">
<meta name="robots" content="index, follow">
<!-- Open Graph -->
<meta property="og:title" content="Luki - About Me | Portfolio">
<meta property="og:description" content="Learn more about me, my journey, and my passion for coding.">
<meta property="og:image" content="https://lukiblokck.github.io/profile.png">
<meta property="og:url" content="https://lukiblokck.github.io/aboutme.html">
<meta property="og:type" content="website">
<meta property="og:site_name" content="Luki's Portfolio">
<!-- Twitter Cards -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Luki - About Me | Portfolio">
<meta name="twitter:description" content="Learn more about me, my journey, and my passion for coding.">
<meta name="twitter:image" content="https://lukiblokck.github.io/profile.png">
<!-- Description -->
<meta name="description" content="Learn more about me, my journey, and my passion for coding.">
<!-- Theme color -->
<meta name="theme-color" content="#10b981">
<title>Luki - About Me</title>
<link rel="stylesheet" href="styles.css" />
<link rel="icon" href="profile.png" type="image/png">
</head>
<body>
<header id="aboutHeader">
<img src="profile.png" alt="My Profile" class="perfil-img" />
<h1>About</h1>
<nav>
<ul>
<li><a href="index.html">Index</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="contact.html">Contact Me</a></li>
</ul>
</nav>
</header>
<main>
<section class="panel" id="aboutPanel">
<h2>About Me</h2>
<p>
Hi! I'm Lukiblokck, but you can call me Luki, a developer since 2017. I started exploring technology on my first laptop, a Lenovo, and fell in love with programming.
I have experience in Python, JavaScript, HTML, CSS, and more. I enjoy creating projects, experimenting with new technologies, and continuously improving my skills.
</p>
</section>
<section class="panel" id="hobbiesPanel">
<h2>Hobbies & Interests</h2>
<p>
When I'm not coding, I enjoy gaming, exploring, learning new programming languages, playing Rugby, go for a walk, etc.
I also love technology in general, experimenting with Linux systems, and building small electronics projects with Raspberry Pi.
</p>
</section>
</main>
<footer>
<p>© 2026 Lukiblokck. All rights reserved.</p>
</footer>
<script src="scripts.js"></script>
</body>
</html>