-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
361 lines (344 loc) · 20.8 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
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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Brock Altug's Portfolio</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="./assets/css/style.css">
<style>
/* Parallax header effect */
header {
background-image: url('./assets/images/parallax.png');
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 400px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
color: #ffffff;
}
/* Parallax effect for mobile */
@media (max-width: 768px) {
header{
background-attachment: scroll; /* Change from fixed to scroll on mobile */
background-size: cover; /* Ensure the image still covers the screen */
height: 300px; /* Adjust height for smaller screens */
}
}
/* Parallax text shadow */
header h1 {
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}
</style>
</head>
<body>
<!-- Header Section with Parallax Image -->
<header class="p-6 shadow-md">
<nav>
<ul class="flex justify-center space-x-8 text-lg">
<li><a href="#about" class="hover:text-c9961e">About</a></li>
<li><a href="#projects" class="hover:text-c9961e">Projects</a></li>
<li><a href="#resume" class="hover:text-c9961e">Resume</a></li>
<li><a href="#contact" class="hover:text-c9961e">Contact</a></li>
</ul>
</nav>
<div class="header-content text-center mt-8">
<h1 class="text-4xl font-bold text-white">Brock Altug</h1>
<img src="assets/images/my-photo.png" alt="Photo of Me" class="avatar w-32 h-32 rounded-full mx-auto mt-4 border-4 border-teal-500">
</div>
</header>
<!-- Main Content -->
<main class="p-10">
<section id="about" class="mb-16 text-center">
<h2 class="text-3xl font-semibold mb-4">About Me</h2>
<p class="text-xl max-w-3xl mx-auto">
Hello, I’m Brock Altug, a dedicated software developer with a strong focus on web development. I am continuously advancing my expertise in JavaScript, HTML, and CSS, while staying up-to-date with the latest innovations in modern web design and development. I am passionate about building high-quality, interactive, and responsive applications that prioritize user experience and performance.
</p>
</section>
<section id="projects" class="mb-16">
<h2 class="text-3xl font-semibold text-center mb-8">My Projects</h2>
<div class="projects-grid">
<article class="project bg-gray-800 mt-5 p-6 rounded-lg shadow-lg hover:shadow-2xl transform hover:-translate-y-2 transition-all">
<a href="https://brockaltug.github.io/seo-roadmap/">
<img src="assets/images/project-4.png" alt="Screenshot of Fourth Application" class="rounded-lg">
<h3 class="text-xl text-center mt-4">📈 SEO Roadmap</h3>
</a>
</article>
<article class="project bg-gray-800 mt-5 p-6 rounded-lg shadow-lg hover:shadow-2xl transform hover:-translate-y-2 transition-all">
<a href="https://brockaltug.github.io/semantic-webpage-template/">
<img src="assets/images/project-3.png" alt="Screenshot of Third Application" class="rounded-lg">
<h3 class="text-xl text-center mt-4">🌐 Semantic Webpage Template</h3>
</a>
</article>
<article class="project bg-gray-800 mt-5 p-6 rounded-lg shadow-lg hover:shadow-2xl transform hover:-translate-y-2 transition-all">
<a href="https://brockaltug.github.io/company-landing-page/">
<img src="./assets/images/project-2.png" alt="Screenshot of Second Application" class="rounded-lg">
<h3 class="text-xl text-center mt-4">🏢 Company Landing Page Template</h3>
</a>
</article>
<article class="project bg-gray-800 mt-5 p-6 rounded-lg shadow-lg hover:shadow-2xl transform hover:-translate-y-2 transition-all">
<a href="https://brockaltug.github.io/soccer-predictions/">
<img src="assets/images/project-5.png" alt="Screenshot of Fifth Application" class="rounded-lg">
<h3 class="text-xl text-center mt-4">⚽️ Soccer Match Tracker</h3>
</a>
</article>
<article class="project bg-gray-800 mt-5 p-6 rounded-lg shadow-lg hover:shadow-2xl transform hover:-translate-y-2 transition-all">
<a href="https://brockaltug.github.io/slot-machine/">
<img src="assets/images/project-1.png" alt="Screenshot of First Application" class="rounded-lg">
<h3 class="text-xl text-center mt-4">🎰 Slot Machine Game</h3>
</a>
</article>
<article class="project bg-gray-800 mt-5 p-6 rounded-lg shadow-lg hover:shadow-2xl transform hover:-translate-y-2 transition-all">
<a href="https://brockaltug.github.io/random-quote-generator/">
<img src="assets/images/project-6.png" alt="Screenshot of Sixth Application" class="rounded-lg">
<h3 class="text-xl text-center mt-4">💭 Random Quote Generator</h3>
</a>
</article>
<article class="project bg-gray-800 mt-5 p-6 rounded-lg shadow-lg hover:shadow-2xl transform hover:-translate-y-2 transition-all">
<a href="https://brockaltug.github.io/weather-dashboard/">
<img src="assets/images/project-7.png" alt="Screenshot of Seventh Application" class="rounded-lg">
<h3 class="text-xl text-center mt-4">🌦️ Weather Dashboard</h3>
</a>
</article>
</div>
</section>
<!-- Resume Section -->
<section id="resume" class="mb-16">
<div class="bg-gray-800 p-8 rounded-lg shadow-lg max-w-4xl mx-auto">
<h2 class="text-3xl font-semibold text-center mb-8">Resume</h2>
<h3 class="text-2xl text-center font-semibold mb-4"></h3>
<p class="text-lg text-center mb-6">
Experienced software developer with a diverse skill set in both front-end and back-end development, automation testing, and quality assurance. Proficient in Java, JavaScript, HTML, CSS, Selenium WebDriver, TestNG, Cucumber BDD, and modern frameworks such as React and Node.js. Strong understanding of Agile methodologies, including Scrum and Jira, with proven experience in collaborating with cross-functional teams to deliver high-quality software solutions. Committed to continuous learning and contributing to dynamic remote teams by ensuring the efficiency, accuracy, and reliability of applications.
</p>
<!-- Experience Section -->
<h4 class="text-3xl text-center font-semibold mb-7">Experience</h4>
<section id="experience" class="p-100">
<!-- Jobs Dropdown -->
<div class="experience-box">
<div class="experience-title" id="experienceTitle">
<h5 class="text-lg font-semibold">Work Experience</h5>
<span class="dropdown-arrow" id="dropdownArrow">▼</span>
</div>
<div class="experience-content" id="experienceContent">
<div class="space-y-4">
<div>
<p class="highlighted"><strong>Berkeley FullStack Bootcamp Student</strong> — Jan 2024 - Present</p>
<ul class="list-disc text-left list-inside">
<li>Engaged in a full-stack web development program focused on JavaScript, Node.js, Express, React, and MongoDB.</li>
<li>Collaborated with team members on real-world projects, simulating agile development environments.</li>
<li>Gained in-depth knowledge of API development, RESTful services, and NoSQL databases like MongoDB.</li>
</ul>
</div>
<div>
<p class="highlighted"><strong>SDET, Nako Holding Company LLC</strong> — Jun 2022 - Jan 2024</p>
<ul class="list-disc text-left list-inside">
<li>Spearheaded the development and maintenance of robust automation frameworks using Java and Selenium WebDriver.</li>
<li>Designed and implemented test scripts using TestNG and Cucumber BDD.</li>
<li>Facilitated seamless agile Scrum processes by collaborating with developers and product owners.</li>
<li>Performed extensive regression, functional, integration, and performance testing, reducing bugs by 40%.</li>
<li>Led automation best practices, increasing test coverage by 30%.</li>
<li>Created test plans and tracked bugs using Jira, improving sprint retrospectives.</li>
</ul>
</div>
<div>
<p class="highlighted"><strong>SDET Intern, Mersys.io</strong> — Jan 2022 - Jun 2022</p>
<ul class="list-disc text-left list-inside">
<li>Collaborated with QA teams to develop automated test suites using Java, Selenium WebDriver, and Maven.</li>
<li>Built automated test scripts for key functionalities and API integrations.</li>
<li>Gained experience in Cucumber BDD for test scenario development.</li>
<li>Assisted in creating test data strategies and developed scripts for cross-browser testing.</li>
</ul>
</div>
<div>
<p class="highlighted"><strong>Data Entry Specialist, Nako Holding Company LLC</strong> — Jun 2016 - Jan 2022</p>
<ul class="list-disc text-left list-inside">
<li>Managed large volumes of customer and financial data, ensuring accurate records.</li>
<li>Conducted data verification audits, reducing errors by 20%.</li>
<li>Suggested improvements to data entry processes, reducing manual times by 25%.</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Professional Roles Dropdown -->
<div class="experience-box">
<div class="experience-title" id="roleTitle">
<h5 class="text-lg font-semibold">Professional Roles</h5>
<span class="dropdown-arrow" id="roleDropdownArrow">▼</span>
</div>
<div class="experience-content" id="roleContent">
<div class="space-y-4">
<div>
<p class="highlighted"><strong>Full Stack Web Developer</strong></p>
<ul class="list-disc text-left list-inside">
<li>Proficient in front-end development with HTML, CSS, JavaScript, React.js, and Tailwind CSS.</li>
<li>Experienced in building RESTful APIs and managing databases using Node.js, Express.js, and MongoDB.</li>
</ul>
</div>
<div>
<p class="highlighted"><strong>Software Development Engineer in Test (SDET)</strong></p>
<ul class="list-disc text-left list-inside">
<li>Skilled in developing automated testing frameworks and ensuring quality standards.</li>
<li>Proficient in Java, Selenium WebDriver, TestNG, Cucumber BDD, and CI/CD pipelines.</li>
<li>Collaborates with agile teams to deliver high-quality software solutions.</li>
</ul>
</div>
<div>
<p class="highlighted"><strong>Quality Assurance Engineer (QA Engineer)</strong></p>
<ul class="list-disc text-left list-inside">
<li>Expertise in designing and executing manual and automated test cases for web and mobile applications.</li>
<li>Skilled in defect tracking, root cause analysis, and collaboration with cross-functional teams.</li>
</ul>
</div>
<div>
<p class="highlighted"><strong>Automation Test Engineer</strong></p>
<ul class="list-disc text-left list-inside">
<li>Proven ability to develop robust automation scripts and reusable libraries for regression testing.</li>
<li>Adept at integrating tests into CI/CD pipelines for improved build quality.</li>
</ul>
</div>
<div>
<p class="highlighted"><strong>Agile Team Player</strong></p>
<ul class="list-disc text-left list-inside">
<li>Experienced in Scrum and Kanban methodologies, participating in daily stand-ups, sprint planning, and retrospectives.</li>
<li>Committed to iterative development and continuous improvement in software quality.</li>
</ul>
</div>
<div>
<p class="highlighted"><strong>DevOps Collaboration</strong></p>
<ul class="list-disc text-left list-inside">
<li>Skilled in working with DevOps teams to integrate test automation into CI/CD pipelines.</li>
<li>Experienced with Jenkins, Docker, and GitLab for continuous integration and deployment.</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<h4 class="text-3xl text-center font-semibold my-10">Languages / Tools</h4>
<!-- Frontend Skills Dropdown -->
<div class="skill-dropdown">
<div class="skill-title">
<h5 class="text-lg font-semibold cursor-pointer">Frontend</h5>
<span class="dropdown-arrow">▼</span>
</div>
<div class="skill-content">
<div class="grid grid-cols-4 gap-8 mt-4">
<div class="flex flex-col items-center">
<a href="https://developer.mozilla.org/en-US/docs/Web/HTML" target="_blank" rel="noreferrer">
<img src="https://skillicons.dev/icons?i=html" alt="HTML" class="w-12 h-12 skill-icon border-2 border-gray-500 rounded-lg" />
</a>
<p class="mt-2 text-white">HTML</p>
</div>
<div class="flex flex-col items-center">
<a href="https://developer.mozilla.org/en-US/docs/Web/CSS" target="_blank" rel="noreferrer">
<img src="https://skillicons.dev/icons?i=css" alt="CSS" class="w-12 h-12 skill-icon border-2 border-gray-500 rounded-lg" />
</a>
<p class="mt-2 text-white">CSS</p>
</div>
<div class="flex flex-col items-center">
<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript" target="_blank" rel="noreferrer">
<img src="https://skillicons.dev/icons?i=js" alt="JavaScript" class="w-12 h-12 skill-icon border-2 border-gray-500 rounded-lg" />
</a>
<p class="mt-2 text-white">JavaScript</p>
</div>
<div class="flex flex-col items-center">
<a href="https://reactjs.org/" target="_blank" rel="noreferrer">
<img src="https://skillicons.dev/icons?i=react" alt="React" class="w-12 h-12 skill-icon border-2 border-gray-500 rounded-lg" />
</a>
<p class="mt-2 text-white">React</p>
</div>
<div class="flex flex-col items-center">
<a href="https://tailwindcss.com/" target="_blank" rel="noreferrer">
<img src="https://skillicons.dev/icons?i=tailwind" alt="Tailwind CSS" class="w-12 h-12 skill-icon border-2 border-gray-500 rounded-lg" />
</a>
<p class="mt-2 text-white">Tailwind CSS</p>
</div>
<div class="flex flex-col items-center">
<a href="https://getbootstrap.com/" target="_blank" rel="noreferrer">
<img src="https://skillicons.dev/icons?i=bootstrap" alt="Bootstrap" class="w-12 h-12 skill-icon border-2 border-gray-500 rounded-lg" />
</a>
<p class="mt-2 text-white">Bootstrap</p>
</div>
<div class="flex flex-col items-center">
<a href="https://jquery.com/" target="_blank" rel="noreferrer">
<img src="https://skillicons.dev/icons?i=jquery" alt="jQuery" class="w-12 h-12 skill-icon border-2 border-gray-500 rounded-lg" />
</a>
<p class="mt-2 text-white">jQuery</p>
</div>
</div>
</div>
</div>
<!-- Backend Skills Dropdown -->
<div class="skill-dropdown">
<div class="skill-title">
<h5 class="text-lg font-semibold cursor-pointer">Backend</h5>
<span class="dropdown-arrow">▼</span>
</div>
<div class="skill-content">
<div class="grid grid-cols-4 gap-8 mt-4">
<div class="flex flex-col items-center">
<a href="https://nodejs.org/" target="_blank" rel="noreferrer">
<img src="https://skillicons.dev/icons?i=nodejs" alt="Node.js" class="w-12 h-12 skill-icon border-2 border-gray-500 rounded-lg" />
</a>
<p class="mt-2 text-white">Node.js</p>
</div>
<div class="flex flex-col items-center">
<a href="https://expressjs.com/" target="_blank" rel="noreferrer">
<img src="https://skillicons.dev/icons?i=express" alt="Express.js" class="w-12 h-12 skill-icon border-2 border-gray-500 rounded-lg" />
</a>
<p class="mt-2 text-white">Express.js</p>
</div>
<div class="flex flex-col items-center">
<a href="https://www.mongodb.com/" target="_blank" rel="noreferrer">
<img src="https://skillicons.dev/icons?i=mongodb" alt="MongoDB" class="w-12 h-12 skill-icon border-2 border-gray-500 rounded-lg" />
</a>
<p class="mt-2 text-white">MongoDB</p>
</div>
<div class="flex flex-col items-center">
<a href="https://www.java.com/" target="_blank" rel="noreferrer">
<img src="https://skillicons.dev/icons?i=java" alt="Java" class="w-12 h-12 skill-icon border-2 border-gray-500 rounded-lg" />
</a>
<p class="mt-2 text-white">Java</p>
</div>
<div class="flex flex-col items-center">
<a href="https://git-scm.com/" target="_blank" rel="noreferrer">
<img src="https://skillicons.dev/icons?i=git" alt="Git" class="w-12 h-12 skill-icon border-2 border-gray-500 rounded-lg" />
</a>
<p class="mt-2 text-white">Git</p>
</div>
<div class="flex flex-col items-center">
<a href="https://www.selenium.dev/" target="_blank" rel="noreferrer">
<img src="https://skillicons.dev/icons?i=selenium" alt="Selenium" class="w-12 h-12 skill-icon border-2 border-gray-500 rounded-lg" />
</a>
<p class="mt-2 text-white">Selenium</p>
</div>
</div>
</div>
</div>
</main>
<!-- Footer Section -->
<footer class="bg-gray-800 p-4 text-center text-gray-300">
<section id="contact" class="text-center mt-6 mb-8">
<h2 class="text-2xl font-semibold mb-4">Contact Me</h2>
<address class="space-y-2">
<p>
<i class="fas fa-envelope text-yellow-400 mr-2"></i>
Email: <a href="mailto:brock.altug99@gmail.com" class="hover:text-yellow-400">brock.altug99@gmail.com</a>
</p>
<p>
<i class="fab fa-github text-yellow-400 mr-2"></i>
Github: <a href="https://github.com/BrockAltug" target="_blank" class="hover:text-yellow-400">My Github Profile</a>
</p>
</address>
</section>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/js/all.min.js"></script>
<script src="./assets/js/script.js"></script>
</body>
</html>