-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaboutus.php
More file actions
61 lines (57 loc) · 3.2 KB
/
Copy pathaboutus.php
File metadata and controls
61 lines (57 loc) · 3.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me - Rizinkovic</title>
<link rel="stylesheet" href="../style.css">
<style>
.about-container {
max-width: 900px;
margin: 40px auto;
padding: 20px;
background: #fff;
border-radius: 8px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.about-container h1 {
font-size: 32px;
color: #007bff;
margin-bottom: 20px;
}
.about-container p {
font-size: 16px;
line-height: 1.7;
color: #333;
}
</style>
</head>
<body>
<?php include './includes/header.php'; ?>
<div class="about-container">
<h1>About Me</h1>
<p>
Welcome to <strong>Rizinkovic</strong> — my personal space on the web where I share my passion for web development, coding experiments, and digital building blocks that shape the internet.
</p>
<p>
My journey into web development started not in a classroom, but with curiosity and frustration. I was tired of not understanding how websites worked — how buttons knew what to do, how data flowed from one screen to another. That single question turned into late-night YouTube binges, endless lines of trial-and-error code, and a steady love for HTML, CSS, and eventually JavaScript.
</p>
<p>
Over time, I learned to build from scratch. From small landing pages to full dynamic blogs, I taught myself how to make websites that not only worked — but felt personal. My early tools were just a browser and a basic text editor. Today, I use VS Code, GitHub, frameworks like Bootstrap, and custom PHP backends to bring ideas to life.
</p>
<p>
My blog, Rizinkovic, is not just a portfolio — it's a reflection of how I grew from someone Googling "how to center a div" to someone building multi-page platforms with login systems, forums, income trackers, and more. I code with purpose now — whether it's a resume builder for students or a personal budgeting app for hustlers like me, every line serves a real-world need.
</p>
<p>
I mostly build in HTML, CSS, JavaScript, and PHP, and I’m exploring SQL databases, responsive design, form validation, and secure login systems. I’m also learning how to deploy full websites using GitHub Pages and hosting panels like InfinityFree.
</p>
<p>
I believe in clean code, simple UX, and creating tools that matter. I’ve been through the pain of debugging alone, learning from broken layouts, and realizing that Google is the best dev friend you'll ever have. Now, I want to help others go through the learning process a little easier — that’s part of why this blog exists.
</p>
<p>
Whether you’re a fellow beginner or a seasoned dev passing through, thanks for checking out Rizinkovic. This blog is my lab, my library, and my legacy — and I’m just getting started.
</p>
</div>
<?php include './includes/footer.php'; ?>
</body>
</html>