-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
245 lines (216 loc) · 8.84 KB
/
index.html
File metadata and controls
245 lines (216 loc) · 8.84 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Trifon Stanchev | Portfolio</title>
<link rel="icon" type="image/svg+xml" href="assets/icons/favicon.svg">
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- Top Bar -->
<header class="topbar">
<div class="topbar-left">
<a class="brand" href="#top">Trifon Stanchev</a>
</div>
<nav class="topbar-nav">
<a href="#projects">Projects</a>
<a href="#skills">Skills</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
<button id="themeToggle" class="icon-btn" aria-label="Toggle dark mode" title="Toggle theme">
<span id="themeIcon" aria-hidden="true">🌙</span>
</button>
</nav>
</header>
<!-- Hero -->
<section class="hero">
<div class="hero-card">
<div class="hero-left">
<img
class="avatar"
src="assets/img/profile.jpg"
alt="Profile photo of Trifon Stanchev"
/>
</div>
<div class="hero-center">
<h1 class="hero-title">
Fachinformatiker für Anwendungsentwicklung (IHK) |
Software Developer <span class="muted">(in training)</span>
</h1>
<p class="hero-subtitle muted">
Currently learning and building with Java, Python, Databases (SQL), HTML/CSS/JavaScript, and Git.
</p>
<div class="hero-actions">
<a class="btn primary" href="#projects">See projects</a>
<a class="btn" href="mailto:trifon.stanchev@protonmail.com">Email me</a>
<a class="btn" href="https://github.com/trifonstanchevtech" target="_blank" rel="noopener noreferrer">GitHub</a>
<!-- Optional -->
<a class="btn" href="https://www.linkedin.com/in/trifon-stanchev/" target="_blank" rel="noopener noreferrer">LinkedIn</a>
</div>
</div>
</div>
</section>
<!-- Featured Projects -->
<section id="projects" class="section">
<div class="section-header">
<h2>Featured Projects</h2>
<p class="muted">Search and filter by technology.</p>
</div>
<div class="projects-toolbar">
<input
id="projectSearch"
class="search"
type="search"
placeholder="Search projects (title, description, tags)..."
autocomplete="off"
/>
<div class="chips" id="filterChips" role="tablist" aria-label="Project filters">
<button class="chip active" data-filter="all" type="button">All</button>
<button class="chip" data-filter="java" type="button">Java</button>
<button class="chip" data-filter="python" type="button">Python</button>
<button class="chip" data-filter="sql" type="button">SQL</button>
<button class="chip" data-filter="web" type="button">Web</button>
<button class="chip" data-filter="git" type="button">Git</button>
</div>
</div>
<div class="projects-grid" id="projectsGrid">
<!-- Project card example -->
<article class="project-card" data-tags="java git" id="p-java-forest-of-secrets">
<div class="project-top">
<h3>Forest of Secrets</h3>
<div class="tag-row">
<span class="tag">Java</span>
<span class="tag">Swing</span>
<span class="tag">Git</span>
</div>
</div>
<p class="muted">
Java Swing grid-adventure game: explore the forest, navigate with keyboard controls, and find the hidden treasure chest.
Focus on OOP structure and clean separation between UI and game logic.
</p>
<div class="card-actions">
<a class="btn small" href="projects/forest-of-secrets.html">Case study</a>
<a class="btn small" href="https://github.com/trifonstanchevtech/ForestOfSecrets" target="_blank" rel="noopener noreferrer">GitHub</a>
<a class="btn small" href="https://github.com/trifonstanchevtech/ForestOfSecrets/releases" target="_blank" rel="noopener noreferrer">Download</a>
</div>
</article>
<p id="noResults" class="muted" style="display:none; margin-top: 1rem;">
No projects match your search/filter.
</p>
</div>
<div style="margin-top: 1.25rem;">
<a class="muted" href="projects/index.html">See all projects →</a>
</div>
</section>
<!-- Skills (bottom badges, not buttons) -->
<section id="skills" class="section">
<div class="section-header">
<h2>Skills</h2>
<p class="muted">Core technologies I work with and continue learning.</p>
</div>
<div class="badges">
<span class="badge">Java</span>
<span class="badge">Python</span>
<span class="badge">SQL</span>
<span class="badge">HTML</span>
<span class="badge">CSS</span>
<span class="badge">JavaScript</span>
<span class="badge">PHP</span>
<span class="badge">Git</span>
</div>
<p class="muted" style="margin-top: 1rem;">
Tools: IntelliJ IDEA • Eclipse • PyCharm • Visual Studio Code
</p>
<p class="muted" style="margin-top: 0.4rem;">
Also: JSON • REST basics
</p>
</section>
<!-- About -->
<section id="about" class="section">
<div class="section-header">
<h2>About Me</h2>
</div>
<div class="prose">
<p>
I am a software developer in training, currently completing a retraining program as a
<strong>Fachinformatiker für Anwendungsentwicklung (IHK)</strong> (IT Specialist for Application Development)
at GFN GmbH in Mannheim. My focus is on building practical, industry-relevant programming skills and applying
them through hands-on projects.
</p>
<p>
During the theoretical phase of my training, I have worked with Python and Java, as well as web technologies
such as HTML, CSS, and SQL. I have gained experience in developing user interfaces, implementing application
functionality, working with databases, and understanding core IT concepts including networking, system integration,
and basic project management.
</p>
<p>
I am currently preparing for my upcoming mandatory internship phase and actively seeking an opportunity in an
IHK-certified company where I can contribute, learn, and further develop my skills. This portfolio was created to
showcase my work and support my application for a suitable internship in software development.
</p>
</div>
</section>
<!-- Contact -->
<section id="contact" class="section">
<div class="section-header">
<h2>Contact</h2>
<p class="muted">For internship opportunities, collaboration, or questions — feel free to reach out.</p>
</div>
<div class="hero-actions">
<a class="btn primary" href="mailto:trifon.stanchev@protonmail.com">
<!-- Mail icon -->
<svg class="btn-icon" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<rect x="2" y="4" width="20" height="16" rx="2"></rect>
<path d="m22 6-10 7L2 6"></path>
</svg>
Email
</a>
<a class="btn" href="https://github.com/trifonstanchevtech"
target="_blank" rel="noopener noreferrer">
<!-- GitHub icon -->
<svg class="btn-icon" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<path d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87
a3.37 3.37 0 0 0-.94-2.61
c3.14-.35 6.44-1.54 6.44-7
A5.44 5.44 0 0 0 20 4.77
A5.07 5.07 0 0 0 19.91 1
S18.73.65 16 2.48
a13.38 13.38 0 0 0-7 0
C6.27.65 5.09 1 5.09 1
A5.07 5.07 0 0 0 5 4.77
a5.44 5.44 0 0 0-1.5 3.78
c0 5.42 3.3 6.61 6.44 7
A3.37 3.37 0 0 0 9 18.13V22"></path>
</svg>
GitHub
</a>
<a class="btn" href="https://www.linkedin.com/in/trifon-stanchev/"
target="_blank" rel="noopener noreferrer">
<!-- LinkedIn icon -->
<svg class="btn-icon" xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round" aria-hidden="true">
<path d="M16 8a6 6 0 0 1 6 6v7h-4v-7
a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7
a6 6 0 0 1 6-6z"></path>
<rect x="2" y="9" width="4" height="12"></rect>
<circle cx="4" cy="4" r="2"></circle>
</svg>
LinkedIn
</a>
</div>
</section>
<footer class="footer">
<p class="muted">© 2026 Trifon Stanchev</p>
</footer>
<script src="script.js"></script>
</body>
</html>