Improve CV layout balance (2-column)

This commit is contained in:
root 2026-01-06 18:25:03 +00:00
parent ddde6ba8c6
commit 8b9be426ac
16 changed files with 584 additions and 272 deletions

View file

@ -5,54 +5,86 @@
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
<title>AHMET KEREM ÖZBAY — CV</title> <title>AHMET KEREM ÖZBAY — CV</title>
<style> <style>
:root { --text:#111; --muted:#444; --rule:#ddd; --blue:#0B3D91; } :root { --text:#111; --muted:#4b4b4b; --rule:#e3e3e3; --blue:#0B3D91; }
@page { size: A4; margin: 12mm; } @page { size: A4; margin: 12mm; }
* { box-sizing: border-box; }
html, body { margin:0; padding:0; } html, body { margin:0; padding:0; }
body { body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
color: var(--text); color: var(--text);
background: #fff; background: #fff;
font-size: 10.5pt; font-size: 10.2pt;
line-height: 1.24; line-height: 1.25;
-webkit-print-color-adjust: exact; -webkit-print-color-adjust: exact;
print-color-adjust: exact; print-color-adjust: exact;
} }
.page { position: relative; background: #fff; } .page { position: relative; background: #fff; }
.header { position: relative; padding-right: 32mm; }
.header {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 8mm;
padding-bottom: 3mm;
margin-bottom: 3mm;
border-bottom: 1px solid var(--rule);
}
.header-left { flex: 1; min-width: 0; }
.photo { .photo {
position: absolute; top: 0; right: 0; width: 28mm; height: 28mm;
width: 26mm; height: 26mm;
border-radius: 4mm; border-radius: 4mm;
object-fit: cover; object-fit: cover;
background: #f2f2f2; background: #f2f2f2;
border: 1px solid #eee;
} }
h1 { font-size: 18pt; margin: 0 0 1.5mm 0; letter-spacing: .2px; }
.subtitle { margin: 0 0 2.5mm 0; color: var(--muted); font-style: italic; } h1 { font-size: 19pt; margin: 0; letter-spacing: .2px; }
.contact { margin: 0 0 3mm 0; } .subtitle { margin: 1mm 0 2mm 0; color: var(--muted); font-style: italic; }
.contact { margin: 0; }
.contact .emph { color: var(--blue); font-weight: 700; } .contact .emph { color: var(--blue); font-weight: 700; }
.contact a { color: var(--text); text-decoration: none; } .contact a { color: var(--text); text-decoration: none; }
.contact a:hover { text-decoration: underline; } .contact a:hover { text-decoration: underline; }
.contact .link { margin-top: 0.5mm; } .contact .link { margin-top: 0.6mm; }
.section { margin-top: 3mm; }
.grid {
display: grid;
grid-template-columns: 1fr 0.44fr;
gap: 8mm;
}
.maincol { min-width: 0; }
.sidecol {
min-width: 0;
padding-left: 6mm;
border-left: 1px solid var(--rule);
font-size: 10pt;
}
.section { margin: 0 0 3mm 0; }
.section h2 { .section h2 {
font-size: 12pt; font-size: 11.5pt;
margin: 0 0 1.5mm 0; margin: 0 0 1.4mm 0;
padding: 0 0 1mm 0; padding: 0 0 0.9mm 0;
border-bottom: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
} }
.entry { margin: 0 0 2mm 0; }
.entry { margin: 0 0 2.2mm 0; }
.entry .title { font-weight: 700; } .entry .title { font-weight: 700; }
.entry .meta { color: var(--muted); } .entry .meta { color: var(--muted); }
ul { margin: 1mm 0 0 4.5mm; padding: 0; }
li { margin: 0 0 1mm 0; } p { margin: 0 0 1.8mm 0; hyphens: auto; }
.skills p { margin: 0 0 1mm 0; } ul { margin: 1mm 0 0 4mm; padding: 0; }
li { margin: 0 0 0.9mm 0; hyphens: auto; }
.skills p { margin: 0 0 1.2mm 0; }
.small { font-size: 10pt; } .small { font-size: 10pt; }
</style> </style>
</head> </head>
<body> <body>
<main class="page"> <main class="page">
<header class="header"> <header class="header">
<img class="photo" src="assets/ahmet_photo.png" alt="Photo" /> <div class="header-left">
<h1>AHMET KEREM ÖZBAY</h1> <h1>AHMET KEREM ÖZBAY</h1>
<div class="subtitle">Lagerbetrieb | Logistik &amp; Internationaler Handel (Absolvent)</div> <div class="subtitle">Lagerbetrieb | Logistik &amp; Internationaler Handel (Absolvent)</div>
<div class="contact small"> <div class="contact small">
@ -60,8 +92,12 @@ li { margin: 0 0 1mm 0; }
<div><span class="emph">+90 544 904 3303</span><span class="emph">ozbaykerem18@gmail.com</span></div> <div><span class="emph">+90 544 904 3303</span><span class="emph">ozbaykerem18@gmail.com</span></div>
<div class="link"><a href="https://www.linkedin.com/in/ahmet-kerem-%C3%B6zbay-204505261">linkedin.com/in/ahmet-kerem-özbay-204505261</a></div> <div class="link"><a href="https://www.linkedin.com/in/ahmet-kerem-%C3%B6zbay-204505261">linkedin.com/in/ahmet-kerem-özbay-204505261</a></div>
</div> </div>
</div>
<img class="photo" src="assets/ahmet_photo.png" alt="Photo" />
</header> </header>
<div class="grid">
<div class="maincol">
<section class="section"> <section class="section">
<h2>Profil</h2> <h2>Profil</h2>
<p>Lagerfachkraft mit praktischer Erfahrung in Kommissionierung, Verpackung, Wareneingang, Etikettierung und Einlagerung sowie einem B.A. in Internationalem Handel &amp; Logistik. Starke Disziplin bei Barcode-Prüfungen, Mengenkontrolle und 5S-Mentalität, um Genauigkeit und Abläufe unter Versandfristen zu sichern. Englisch C1 und fortgeschrittene Excel/Office-Kenntnisse. Schichtarbeit und Umzugsbereitschaft je nach Bedarf.</p> <p>Lagerfachkraft mit praktischer Erfahrung in Kommissionierung, Verpackung, Wareneingang, Etikettierung und Einlagerung sowie einem B.A. in Internationalem Handel &amp; Logistik. Starke Disziplin bei Barcode-Prüfungen, Mengenkontrolle und 5S-Mentalität, um Genauigkeit und Abläufe unter Versandfristen zu sichern. Englisch C1 und fortgeschrittene Excel/Office-Kenntnisse. Schichtarbeit und Umzugsbereitschaft je nach Bedarf.</p>
@ -78,12 +114,8 @@ li { margin: 0 0 1mm 0; }
<ul><li>Kundenorientierter Service in Hochbetrieb unter Einhaltung von Hygiene- und Präsentationsstandards.</li><li>Stärkung von Kommunikationsfähigkeit, Teamarbeit und Multitasking in einem schnelllebigen Umfeld.</li></ul> <ul><li>Kundenorientierter Service in Hochbetrieb unter Einhaltung von Hygiene- und Präsentationsstandards.</li><li>Stärkung von Kommunikationsfähigkeit, Teamarbeit und Multitasking in einem schnelllebigen Umfeld.</li></ul>
</div> </div>
</section> </section>
</div>
<section class="section"> <aside class="sidecol">
<h2>Ausbildung</h2>
<p>Bachelor of International Trade and Logistics — Cumhuriyet Üniversitesi | 2025</p>
</section>
<section class="section skills"> <section class="section skills">
<h2>Kenntnisse &amp; Fähigkeiten</h2> <h2>Kenntnisse &amp; Fähigkeiten</h2>
<p><strong>Lagerbetrieb:</strong> Kommissionierung, Verpackung, Wareneingang, Etikettierung, Einlagerung, Be- und Entladung, Bestandskontrolle, 5S</p> <p><strong>Lagerbetrieb:</strong> Kommissionierung, Verpackung, Wareneingang, Etikettierung, Einlagerung, Be- und Entladung, Bestandskontrolle, 5S</p>
@ -92,6 +124,13 @@ li { margin: 0 0 1mm 0; }
<p><strong>Sprachen:</strong> Englisch (C1), Französisch (A1), Deutsch (A1)</p> <p><strong>Sprachen:</strong> Englisch (C1), Französisch (A1), Deutsch (A1)</p>
<p><strong>Zertifikate:</strong> Führerschein Klasse B; Drohnenpilotenlizenz</p> <p><strong>Zertifikate:</strong> Führerschein Klasse B; Drohnenpilotenlizenz</p>
</section> </section>
<section class="section">
<h2>Ausbildung</h2>
<p>Bachelor of International Trade and Logistics — Cumhuriyet Üniversitesi | 2025</p>
</section>
</aside>
</div>
</main> </main>
</body> </body>
</html> </html>

View file

@ -5,54 +5,86 @@
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
<title>AHMET KEREM ÖZBAY — CV</title> <title>AHMET KEREM ÖZBAY — CV</title>
<style> <style>
:root { --text:#111; --muted:#444; --rule:#ddd; --blue:#0B3D91; } :root { --text:#111; --muted:#4b4b4b; --rule:#e3e3e3; --blue:#0B3D91; }
@page { size: A4; margin: 12mm; } @page { size: A4; margin: 12mm; }
* { box-sizing: border-box; }
html, body { margin:0; padding:0; } html, body { margin:0; padding:0; }
body { body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
color: var(--text); color: var(--text);
background: #fff; background: #fff;
font-size: 10.5pt; font-size: 10.2pt;
line-height: 1.24; line-height: 1.25;
-webkit-print-color-adjust: exact; -webkit-print-color-adjust: exact;
print-color-adjust: exact; print-color-adjust: exact;
} }
.page { position: relative; background: #fff; } .page { position: relative; background: #fff; }
.header { position: relative; padding-right: 32mm; }
.header {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 8mm;
padding-bottom: 3mm;
margin-bottom: 3mm;
border-bottom: 1px solid var(--rule);
}
.header-left { flex: 1; min-width: 0; }
.photo { .photo {
position: absolute; top: 0; right: 0; width: 28mm; height: 28mm;
width: 26mm; height: 26mm;
border-radius: 4mm; border-radius: 4mm;
object-fit: cover; object-fit: cover;
background: #f2f2f2; background: #f2f2f2;
border: 1px solid #eee;
} }
h1 { font-size: 18pt; margin: 0 0 1.5mm 0; letter-spacing: .2px; }
.subtitle { margin: 0 0 2.5mm 0; color: var(--muted); font-style: italic; } h1 { font-size: 19pt; margin: 0; letter-spacing: .2px; }
.contact { margin: 0 0 3mm 0; } .subtitle { margin: 1mm 0 2mm 0; color: var(--muted); font-style: italic; }
.contact { margin: 0; }
.contact .emph { color: var(--blue); font-weight: 700; } .contact .emph { color: var(--blue); font-weight: 700; }
.contact a { color: var(--text); text-decoration: none; } .contact a { color: var(--text); text-decoration: none; }
.contact a:hover { text-decoration: underline; } .contact a:hover { text-decoration: underline; }
.contact .link { margin-top: 0.5mm; } .contact .link { margin-top: 0.6mm; }
.section { margin-top: 3mm; }
.grid {
display: grid;
grid-template-columns: 1fr 0.44fr;
gap: 8mm;
}
.maincol { min-width: 0; }
.sidecol {
min-width: 0;
padding-left: 6mm;
border-left: 1px solid var(--rule);
font-size: 10pt;
}
.section { margin: 0 0 3mm 0; }
.section h2 { .section h2 {
font-size: 12pt; font-size: 11.5pt;
margin: 0 0 1.5mm 0; margin: 0 0 1.4mm 0;
padding: 0 0 1mm 0; padding: 0 0 0.9mm 0;
border-bottom: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
} }
.entry { margin: 0 0 2mm 0; }
.entry { margin: 0 0 2.2mm 0; }
.entry .title { font-weight: 700; } .entry .title { font-weight: 700; }
.entry .meta { color: var(--muted); } .entry .meta { color: var(--muted); }
ul { margin: 1mm 0 0 4.5mm; padding: 0; }
li { margin: 0 0 1mm 0; } p { margin: 0 0 1.8mm 0; hyphens: auto; }
.skills p { margin: 0 0 1mm 0; } ul { margin: 1mm 0 0 4mm; padding: 0; }
li { margin: 0 0 0.9mm 0; hyphens: auto; }
.skills p { margin: 0 0 1.2mm 0; }
.small { font-size: 10pt; } .small { font-size: 10pt; }
</style> </style>
</head> </head>
<body> <body>
<main class="page"> <main class="page">
<header class="header"> <header class="header">
<img class="photo" src="assets/ahmet_photo.png" alt="Photo" /> <div class="header-left">
<h1>AHMET KEREM ÖZBAY</h1> <h1>AHMET KEREM ÖZBAY</h1>
<div class="subtitle">Λειτουργίες Αποθήκης | Εφοδιαστική &amp; Διεθνές Εμπόριο (Μεταπτυχιακό)</div> <div class="subtitle">Λειτουργίες Αποθήκης | Εφοδιαστική &amp; Διεθνές Εμπόριο (Μεταπτυχιακό)</div>
<div class="contact small"> <div class="contact small">
@ -60,8 +92,12 @@ li { margin: 0 0 1mm 0; }
<div><span class="emph">+90 544 904 3303</span><span class="emph">ozbaykerem18@gmail.com</span></div> <div><span class="emph">+90 544 904 3303</span><span class="emph">ozbaykerem18@gmail.com</span></div>
<div class="link"><a href="https://www.linkedin.com/in/ahmet-kerem-%C3%B6zbay-204505261">linkedin.com/in/ahmet-kerem-özbay-204505261</a></div> <div class="link"><a href="https://www.linkedin.com/in/ahmet-kerem-%C3%B6zbay-204505261">linkedin.com/in/ahmet-kerem-özbay-204505261</a></div>
</div> </div>
</div>
<img class="photo" src="assets/ahmet_photo.png" alt="Photo" />
</header> </header>
<div class="grid">
<div class="maincol">
<section class="section"> <section class="section">
<h2>Περίληψη</h2> <h2>Περίληψη</h2>
<p>Εργαζόμενος αποθήκης με πρακτική εμπειρία σε συλλογή, συσκευασία, παραλαβή, επισήμανση και τοποθέτηση αποθέματος, καθώς και πτυχίο B.A. στο Διεθνές Εμπόριο &amp; Εφοδιαστική. Ισχυρή πειθαρχία ελέγχου με barcode, επαλήθευση ποσότητας και νοοτροπία 5S για την προστασία της ακρίβειας και της ροής υπό προθεσμίες αποστολών. Αγγλικά C1 και προχωρημένες δεξιότητες σε MS Excel/Office. Δέχεται εργασία σε βάρδιες και μετεγκατάσταση όπου χρειάζεται.</p> <p>Εργαζόμενος αποθήκης με πρακτική εμπειρία σε συλλογή, συσκευασία, παραλαβή, επισήμανση και τοποθέτηση αποθέματος, καθώς και πτυχίο B.A. στο Διεθνές Εμπόριο &amp; Εφοδιαστική. Ισχυρή πειθαρχία ελέγχου με barcode, επαλήθευση ποσότητας και νοοτροπία 5S για την προστασία της ακρίβειας και της ροής υπό προθεσμίες αποστολών. Αγγλικά C1 και προχωρημένες δεξιότητες σε MS Excel/Office. Δέχεται εργασία σε βάρδιες και μετεγκατάσταση όπου χρειάζεται.</p>
@ -78,12 +114,8 @@ li { margin: 0 0 1mm 0; }
<ul><li>Παροχή εξυπηρέτησης πελατών υψηλού όγκου διατηρώντας τα πρότυπα υγιεινής και παρουσίασης.</li><li>Ανάπτυξη ισχυρών δεξιοτήτων επικοινωνίας, ομαδικής εργασίας και πολυδιεργασίας σε περιβάλλον γρήγορου ρυθμού.</li></ul> <ul><li>Παροχή εξυπηρέτησης πελατών υψηλού όγκου διατηρώντας τα πρότυπα υγιεινής και παρουσίασης.</li><li>Ανάπτυξη ισχυρών δεξιοτήτων επικοινωνίας, ομαδικής εργασίας και πολυδιεργασίας σε περιβάλλον γρήγορου ρυθμού.</li></ul>
</div> </div>
</section> </section>
</div>
<section class="section"> <aside class="sidecol">
<h2>Εκπαίδευση</h2>
<p>Πτυχίο Διεθνούς Εμπορίου και Εφοδιαστικής — Cumhuriyet Üniversitesi | 2025</p>
</section>
<section class="section skills"> <section class="section skills">
<h2>Δεξιότητες</h2> <h2>Δεξιότητες</h2>
<p><strong>Λειτουργίες Αποθήκης:</strong> συλλογή, συσκευασία, παραλαβή, επισήμανση, τοποθέτηση, φόρτωση/εκφόρτωση, έλεγχος αποθέματος, 5S</p> <p><strong>Λειτουργίες Αποθήκης:</strong> συλλογή, συσκευασία, παραλαβή, επισήμανση, τοποθέτηση, φόρτωση/εκφόρτωση, έλεγχος αποθέματος, 5S</p>
@ -92,6 +124,13 @@ li { margin: 0 0 1mm 0; }
<p><strong>Γλώσσες:</strong> Αγγλικά (C1), Γαλλικά (A1), Γερμανικά (A1)</p> <p><strong>Γλώσσες:</strong> Αγγλικά (C1), Γαλλικά (A1), Γερμανικά (A1)</p>
<p><strong>Πιστοποιήσεις:</strong> Άδεια οδήγησης κατηγορίας B· άδεια πιλότου UAV</p> <p><strong>Πιστοποιήσεις:</strong> Άδεια οδήγησης κατηγορίας B· άδεια πιλότου UAV</p>
</section> </section>
<section class="section">
<h2>Εκπαίδευση</h2>
<p>Πτυχίο Διεθνούς Εμπορίου και Εφοδιαστικής — Cumhuriyet Üniversitesi | 2025</p>
</section>
</aside>
</div>
</main> </main>
</body> </body>
</html> </html>

View file

@ -5,54 +5,86 @@
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
<title>AHMET KEREM ÖZBAY — CV</title> <title>AHMET KEREM ÖZBAY — CV</title>
<style> <style>
:root { --text:#111; --muted:#444; --rule:#ddd; --blue:#0B3D91; } :root { --text:#111; --muted:#4b4b4b; --rule:#e3e3e3; --blue:#0B3D91; }
@page { size: A4; margin: 12mm; } @page { size: A4; margin: 12mm; }
* { box-sizing: border-box; }
html, body { margin:0; padding:0; } html, body { margin:0; padding:0; }
body { body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
color: var(--text); color: var(--text);
background: #fff; background: #fff;
font-size: 10.5pt; font-size: 10.2pt;
line-height: 1.24; line-height: 1.25;
-webkit-print-color-adjust: exact; -webkit-print-color-adjust: exact;
print-color-adjust: exact; print-color-adjust: exact;
} }
.page { position: relative; background: #fff; } .page { position: relative; background: #fff; }
.header { position: relative; padding-right: 32mm; }
.header {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 8mm;
padding-bottom: 3mm;
margin-bottom: 3mm;
border-bottom: 1px solid var(--rule);
}
.header-left { flex: 1; min-width: 0; }
.photo { .photo {
position: absolute; top: 0; right: 0; width: 28mm; height: 28mm;
width: 26mm; height: 26mm;
border-radius: 4mm; border-radius: 4mm;
object-fit: cover; object-fit: cover;
background: #f2f2f2; background: #f2f2f2;
border: 1px solid #eee;
} }
h1 { font-size: 18pt; margin: 0 0 1.5mm 0; letter-spacing: .2px; }
.subtitle { margin: 0 0 2.5mm 0; color: var(--muted); font-style: italic; } h1 { font-size: 19pt; margin: 0; letter-spacing: .2px; }
.contact { margin: 0 0 3mm 0; } .subtitle { margin: 1mm 0 2mm 0; color: var(--muted); font-style: italic; }
.contact { margin: 0; }
.contact .emph { color: var(--blue); font-weight: 700; } .contact .emph { color: var(--blue); font-weight: 700; }
.contact a { color: var(--text); text-decoration: none; } .contact a { color: var(--text); text-decoration: none; }
.contact a:hover { text-decoration: underline; } .contact a:hover { text-decoration: underline; }
.contact .link { margin-top: 0.5mm; } .contact .link { margin-top: 0.6mm; }
.section { margin-top: 3mm; }
.grid {
display: grid;
grid-template-columns: 1fr 0.44fr;
gap: 8mm;
}
.maincol { min-width: 0; }
.sidecol {
min-width: 0;
padding-left: 6mm;
border-left: 1px solid var(--rule);
font-size: 10pt;
}
.section { margin: 0 0 3mm 0; }
.section h2 { .section h2 {
font-size: 12pt; font-size: 11.5pt;
margin: 0 0 1.5mm 0; margin: 0 0 1.4mm 0;
padding: 0 0 1mm 0; padding: 0 0 0.9mm 0;
border-bottom: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
} }
.entry { margin: 0 0 2mm 0; }
.entry { margin: 0 0 2.2mm 0; }
.entry .title { font-weight: 700; } .entry .title { font-weight: 700; }
.entry .meta { color: var(--muted); } .entry .meta { color: var(--muted); }
ul { margin: 1mm 0 0 4.5mm; padding: 0; }
li { margin: 0 0 1mm 0; } p { margin: 0 0 1.8mm 0; hyphens: auto; }
.skills p { margin: 0 0 1mm 0; } ul { margin: 1mm 0 0 4mm; padding: 0; }
li { margin: 0 0 0.9mm 0; hyphens: auto; }
.skills p { margin: 0 0 1.2mm 0; }
.small { font-size: 10pt; } .small { font-size: 10pt; }
</style> </style>
</head> </head>
<body> <body>
<main class="page"> <main class="page">
<header class="header"> <header class="header">
<img class="photo" src="assets/ahmet_photo.png" alt="Photo" /> <div class="header-left">
<h1>AHMET KEREM ÖZBAY</h1> <h1>AHMET KEREM ÖZBAY</h1>
<div class="subtitle">Warehouse Operations | Logistics &amp; International Trade (Graduate)</div> <div class="subtitle">Warehouse Operations | Logistics &amp; International Trade (Graduate)</div>
<div class="contact small"> <div class="contact small">
@ -60,8 +92,12 @@ li { margin: 0 0 1mm 0; }
<div><span class="emph">+90 544 904 3303</span><span class="emph">ozbaykerem18@gmail.com</span></div> <div><span class="emph">+90 544 904 3303</span><span class="emph">ozbaykerem18@gmail.com</span></div>
<div class="link"><a href="https://www.linkedin.com/in/ahmet-kerem-%C3%B6zbay-204505261">linkedin.com/in/ahmet-kerem-özbay-204505261</a></div> <div class="link"><a href="https://www.linkedin.com/in/ahmet-kerem-%C3%B6zbay-204505261">linkedin.com/in/ahmet-kerem-özbay-204505261</a></div>
</div> </div>
</div>
<img class="photo" src="assets/ahmet_photo.png" alt="Photo" />
</header> </header>
<div class="grid">
<div class="maincol">
<section class="section"> <section class="section">
<h2>Summary</h2> <h2>Summary</h2>
<p>Warehouse operator with hands-on experience in picking, packing, receiving, labeling, and stock put-away, plus a B.A. in International Trade &amp; Logistics. Strong barcode-check discipline, quantity verification, and 5S mindset to protect accuracy and flow under dispatch deadlines. English C1 and advanced Excel/Office skills. Open to shift work and relocation where needed.</p> <p>Warehouse operator with hands-on experience in picking, packing, receiving, labeling, and stock put-away, plus a B.A. in International Trade &amp; Logistics. Strong barcode-check discipline, quantity verification, and 5S mindset to protect accuracy and flow under dispatch deadlines. English C1 and advanced Excel/Office skills. Open to shift work and relocation where needed.</p>
@ -78,12 +114,8 @@ li { margin: 0 0 1mm 0; }
<ul><li>Delivered high-volume customer service while maintaining hygiene and presentation standards.</li><li>Built strong communication, teamwork, and multitasking habits in a fast-paced environment.</li></ul> <ul><li>Delivered high-volume customer service while maintaining hygiene and presentation standards.</li><li>Built strong communication, teamwork, and multitasking habits in a fast-paced environment.</li></ul>
</div> </div>
</section> </section>
</div>
<section class="section"> <aside class="sidecol">
<h2>Education</h2>
<p>Bachelor of International Trade and Logistics — Cumhuriyet Üniversitesi | 2025</p>
</section>
<section class="section skills"> <section class="section skills">
<h2>Skills</h2> <h2>Skills</h2>
<p><strong>Warehouse Ops:</strong> picking, packing, receiving, labeling, put-away, loading/unloading, stock control, 5S</p> <p><strong>Warehouse Ops:</strong> picking, packing, receiving, labeling, put-away, loading/unloading, stock control, 5S</p>
@ -92,6 +124,13 @@ li { margin: 0 0 1mm 0; }
<p><strong>Languages:</strong> English (C1), French (A1), German (A1)</p> <p><strong>Languages:</strong> English (C1), French (A1), German (A1)</p>
<p><strong>Certs:</strong> B driving license; UAV pilot license</p> <p><strong>Certs:</strong> B driving license; UAV pilot license</p>
</section> </section>
<section class="section">
<h2>Education</h2>
<p>Bachelor of International Trade and Logistics — Cumhuriyet Üniversitesi | 2025</p>
</section>
</aside>
</div>
</main> </main>
</body> </body>
</html> </html>

View file

@ -5,54 +5,86 @@
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
<title>AHMET KEREM ÖZBAY — CV</title> <title>AHMET KEREM ÖZBAY — CV</title>
<style> <style>
:root { --text:#111; --muted:#444; --rule:#ddd; --blue:#0B3D91; } :root { --text:#111; --muted:#4b4b4b; --rule:#e3e3e3; --blue:#0B3D91; }
@page { size: A4; margin: 12mm; } @page { size: A4; margin: 12mm; }
* { box-sizing: border-box; }
html, body { margin:0; padding:0; } html, body { margin:0; padding:0; }
body { body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
color: var(--text); color: var(--text);
background: #fff; background: #fff;
font-size: 10.5pt; font-size: 10.2pt;
line-height: 1.24; line-height: 1.25;
-webkit-print-color-adjust: exact; -webkit-print-color-adjust: exact;
print-color-adjust: exact; print-color-adjust: exact;
} }
.page { position: relative; background: #fff; } .page { position: relative; background: #fff; }
.header { position: relative; padding-right: 32mm; }
.header {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 8mm;
padding-bottom: 3mm;
margin-bottom: 3mm;
border-bottom: 1px solid var(--rule);
}
.header-left { flex: 1; min-width: 0; }
.photo { .photo {
position: absolute; top: 0; right: 0; width: 28mm; height: 28mm;
width: 26mm; height: 26mm;
border-radius: 4mm; border-radius: 4mm;
object-fit: cover; object-fit: cover;
background: #f2f2f2; background: #f2f2f2;
border: 1px solid #eee;
} }
h1 { font-size: 18pt; margin: 0 0 1.5mm 0; letter-spacing: .2px; }
.subtitle { margin: 0 0 2.5mm 0; color: var(--muted); font-style: italic; } h1 { font-size: 19pt; margin: 0; letter-spacing: .2px; }
.contact { margin: 0 0 3mm 0; } .subtitle { margin: 1mm 0 2mm 0; color: var(--muted); font-style: italic; }
.contact { margin: 0; }
.contact .emph { color: var(--blue); font-weight: 700; } .contact .emph { color: var(--blue); font-weight: 700; }
.contact a { color: var(--text); text-decoration: none; } .contact a { color: var(--text); text-decoration: none; }
.contact a:hover { text-decoration: underline; } .contact a:hover { text-decoration: underline; }
.contact .link { margin-top: 0.5mm; } .contact .link { margin-top: 0.6mm; }
.section { margin-top: 3mm; }
.grid {
display: grid;
grid-template-columns: 1fr 0.44fr;
gap: 8mm;
}
.maincol { min-width: 0; }
.sidecol {
min-width: 0;
padding-left: 6mm;
border-left: 1px solid var(--rule);
font-size: 10pt;
}
.section { margin: 0 0 3mm 0; }
.section h2 { .section h2 {
font-size: 12pt; font-size: 11.5pt;
margin: 0 0 1.5mm 0; margin: 0 0 1.4mm 0;
padding: 0 0 1mm 0; padding: 0 0 0.9mm 0;
border-bottom: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
} }
.entry { margin: 0 0 2mm 0; }
.entry { margin: 0 0 2.2mm 0; }
.entry .title { font-weight: 700; } .entry .title { font-weight: 700; }
.entry .meta { color: var(--muted); } .entry .meta { color: var(--muted); }
ul { margin: 1mm 0 0 4.5mm; padding: 0; }
li { margin: 0 0 1mm 0; } p { margin: 0 0 1.8mm 0; hyphens: auto; }
.skills p { margin: 0 0 1mm 0; } ul { margin: 1mm 0 0 4mm; padding: 0; }
li { margin: 0 0 0.9mm 0; hyphens: auto; }
.skills p { margin: 0 0 1.2mm 0; }
.small { font-size: 10pt; } .small { font-size: 10pt; }
</style> </style>
</head> </head>
<body> <body>
<main class="page"> <main class="page">
<header class="header"> <header class="header">
<img class="photo" src="assets/ahmet_photo.png" alt="Photo" /> <div class="header-left">
<h1>AHMET KEREM ÖZBAY</h1> <h1>AHMET KEREM ÖZBAY</h1>
<div class="subtitle">Operaciones de Almacén | Logística y Comercio Internacional (Posgrado)</div> <div class="subtitle">Operaciones de Almacén | Logística y Comercio Internacional (Posgrado)</div>
<div class="contact small"> <div class="contact small">
@ -60,8 +92,12 @@ li { margin: 0 0 1mm 0; }
<div><span class="emph">+90 544 904 3303</span><span class="emph">ozbaykerem18@gmail.com</span></div> <div><span class="emph">+90 544 904 3303</span><span class="emph">ozbaykerem18@gmail.com</span></div>
<div class="link"><a href="https://www.linkedin.com/in/ahmet-kerem-%C3%B6zbay-204505261">linkedin.com/in/ahmet-kerem-özbay-204505261</a></div> <div class="link"><a href="https://www.linkedin.com/in/ahmet-kerem-%C3%B6zbay-204505261">linkedin.com/in/ahmet-kerem-özbay-204505261</a></div>
</div> </div>
</div>
<img class="photo" src="assets/ahmet_photo.png" alt="Photo" />
</header> </header>
<div class="grid">
<div class="maincol">
<section class="section"> <section class="section">
<h2>Resumen</h2> <h2>Resumen</h2>
<p>Operario de almacén con experiencia práctica en picking, packing, recepción, etiquetado y colocación de stock, además de una licenciatura en Comercio Internacional y Logística. Fuerte disciplina en verificación de códigos de barras, control de cantidades y mentalidad 5S para proteger la precisión y el flujo bajo plazos de despacho. Inglés C1 y habilidades avanzadas en MS Excel/Office. Abierto a trabajo por turnos y reubicación según sea necesario.</p> <p>Operario de almacén con experiencia práctica en picking, packing, recepción, etiquetado y colocación de stock, además de una licenciatura en Comercio Internacional y Logística. Fuerte disciplina en verificación de códigos de barras, control de cantidades y mentalidad 5S para proteger la precisión y el flujo bajo plazos de despacho. Inglés C1 y habilidades avanzadas en MS Excel/Office. Abierto a trabajo por turnos y reubicación según sea necesario.</p>
@ -78,12 +114,8 @@ li { margin: 0 0 1mm 0; }
<ul><li>Brindé servicio al cliente de alto volumen manteniendo los estándares de higiene y presentación.</li><li>Desarrollé habilidades sólidas de comunicación, trabajo en equipo y multitarea en un entorno de ritmo rápido.</li></ul> <ul><li>Brindé servicio al cliente de alto volumen manteniendo los estándares de higiene y presentación.</li><li>Desarrollé habilidades sólidas de comunicación, trabajo en equipo y multitarea en un entorno de ritmo rápido.</li></ul>
</div> </div>
</section> </section>
</div>
<section class="section"> <aside class="sidecol">
<h2>Educación</h2>
<p>Licenciatura en Comercio Internacional y Logística — Cumhuriyet Üniversitesi | 2025</p>
</section>
<section class="section skills"> <section class="section skills">
<h2>Habilidades</h2> <h2>Habilidades</h2>
<p><strong>Operaciones de Almacén:</strong> picking, packing, recepción, etiquetado, colocación, carga/descarga, control de stock, 5S</p> <p><strong>Operaciones de Almacén:</strong> picking, packing, recepción, etiquetado, colocación, carga/descarga, control de stock, 5S</p>
@ -92,6 +124,13 @@ li { margin: 0 0 1mm 0; }
<p><strong>Idiomas:</strong> Inglés (C1), Francés (A1), Alemán (A1)</p> <p><strong>Idiomas:</strong> Inglés (C1), Francés (A1), Alemán (A1)</p>
<p><strong>Certificados:</strong> Licencia de conducir B; licencia de piloto de UAV</p> <p><strong>Certificados:</strong> Licencia de conducir B; licencia de piloto de UAV</p>
</section> </section>
<section class="section">
<h2>Educación</h2>
<p>Licenciatura en Comercio Internacional y Logística — Cumhuriyet Üniversitesi | 2025</p>
</section>
</aside>
</div>
</main> </main>
</body> </body>
</html> </html>

View file

@ -5,54 +5,86 @@
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
<title>AHMET KEREM ÖZBAY — CV</title> <title>AHMET KEREM ÖZBAY — CV</title>
<style> <style>
:root { --text:#111; --muted:#444; --rule:#ddd; --blue:#0B3D91; } :root { --text:#111; --muted:#4b4b4b; --rule:#e3e3e3; --blue:#0B3D91; }
@page { size: A4; margin: 12mm; } @page { size: A4; margin: 12mm; }
* { box-sizing: border-box; }
html, body { margin:0; padding:0; } html, body { margin:0; padding:0; }
body { body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
color: var(--text); color: var(--text);
background: #fff; background: #fff;
font-size: 10.5pt; font-size: 10.2pt;
line-height: 1.24; line-height: 1.25;
-webkit-print-color-adjust: exact; -webkit-print-color-adjust: exact;
print-color-adjust: exact; print-color-adjust: exact;
} }
.page { position: relative; background: #fff; } .page { position: relative; background: #fff; }
.header { position: relative; padding-right: 32mm; }
.header {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 8mm;
padding-bottom: 3mm;
margin-bottom: 3mm;
border-bottom: 1px solid var(--rule);
}
.header-left { flex: 1; min-width: 0; }
.photo { .photo {
position: absolute; top: 0; right: 0; width: 28mm; height: 28mm;
width: 26mm; height: 26mm;
border-radius: 4mm; border-radius: 4mm;
object-fit: cover; object-fit: cover;
background: #f2f2f2; background: #f2f2f2;
border: 1px solid #eee;
} }
h1 { font-size: 18pt; margin: 0 0 1.5mm 0; letter-spacing: .2px; }
.subtitle { margin: 0 0 2.5mm 0; color: var(--muted); font-style: italic; } h1 { font-size: 19pt; margin: 0; letter-spacing: .2px; }
.contact { margin: 0 0 3mm 0; } .subtitle { margin: 1mm 0 2mm 0; color: var(--muted); font-style: italic; }
.contact { margin: 0; }
.contact .emph { color: var(--blue); font-weight: 700; } .contact .emph { color: var(--blue); font-weight: 700; }
.contact a { color: var(--text); text-decoration: none; } .contact a { color: var(--text); text-decoration: none; }
.contact a:hover { text-decoration: underline; } .contact a:hover { text-decoration: underline; }
.contact .link { margin-top: 0.5mm; } .contact .link { margin-top: 0.6mm; }
.section { margin-top: 3mm; }
.grid {
display: grid;
grid-template-columns: 1fr 0.44fr;
gap: 8mm;
}
.maincol { min-width: 0; }
.sidecol {
min-width: 0;
padding-left: 6mm;
border-left: 1px solid var(--rule);
font-size: 10pt;
}
.section { margin: 0 0 3mm 0; }
.section h2 { .section h2 {
font-size: 12pt; font-size: 11.5pt;
margin: 0 0 1.5mm 0; margin: 0 0 1.4mm 0;
padding: 0 0 1mm 0; padding: 0 0 0.9mm 0;
border-bottom: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
} }
.entry { margin: 0 0 2mm 0; }
.entry { margin: 0 0 2.2mm 0; }
.entry .title { font-weight: 700; } .entry .title { font-weight: 700; }
.entry .meta { color: var(--muted); } .entry .meta { color: var(--muted); }
ul { margin: 1mm 0 0 4.5mm; padding: 0; }
li { margin: 0 0 1mm 0; } p { margin: 0 0 1.8mm 0; hyphens: auto; }
.skills p { margin: 0 0 1mm 0; } ul { margin: 1mm 0 0 4mm; padding: 0; }
li { margin: 0 0 0.9mm 0; hyphens: auto; }
.skills p { margin: 0 0 1.2mm 0; }
.small { font-size: 10pt; } .small { font-size: 10pt; }
</style> </style>
</head> </head>
<body> <body>
<main class="page"> <main class="page">
<header class="header"> <header class="header">
<img class="photo" src="assets/ahmet_photo.png" alt="Photo" /> <div class="header-left">
<h1>AHMET KEREM ÖZBAY</h1> <h1>AHMET KEREM ÖZBAY</h1>
<div class="subtitle">Opérations d'entrepôt | Logistique &amp; Commerce International (Diplômé)</div> <div class="subtitle">Opérations d'entrepôt | Logistique &amp; Commerce International (Diplômé)</div>
<div class="contact small"> <div class="contact small">
@ -60,8 +92,12 @@ li { margin: 0 0 1mm 0; }
<div><span class="emph">+90 544 904 3303</span><span class="emph">ozbaykerem18@gmail.com</span></div> <div><span class="emph">+90 544 904 3303</span><span class="emph">ozbaykerem18@gmail.com</span></div>
<div class="link"><a href="https://www.linkedin.com/in/ahmet-kerem-%C3%B6zbay-204505261">linkedin.com/in/ahmet-kerem-özbay-204505261</a></div> <div class="link"><a href="https://www.linkedin.com/in/ahmet-kerem-%C3%B6zbay-204505261">linkedin.com/in/ahmet-kerem-özbay-204505261</a></div>
</div> </div>
</div>
<img class="photo" src="assets/ahmet_photo.png" alt="Photo" />
</header> </header>
<div class="grid">
<div class="maincol">
<section class="section"> <section class="section">
<h2>Profil</h2> <h2>Profil</h2>
<p>Opérateur d'entrepôt avec une expérience pratique en préparation de commandes, emballage, réception, étiquetage et mise en stock, ainsi qu'une licence en Commerce International &amp; Logistique. Rigueur dans les contrôles par code-barres, vérification des quantités et application de la méthode 5S pour garantir la précision et le flux sous les délais d'expédition. Anglais C1 et compétences avancées en Excel/Office. Ouvert au travail en horaires postés / en équipes et à la mobilité géographique selon les besoins.</p> <p>Opérateur d'entrepôt avec une expérience pratique en préparation de commandes, emballage, réception, étiquetage et mise en stock, ainsi qu'une licence en Commerce International &amp; Logistique. Rigueur dans les contrôles par code-barres, vérification des quantités et application de la méthode 5S pour garantir la précision et le flux sous les délais d'expédition. Anglais C1 et compétences avancées en Excel/Office. Ouvert au travail en horaires postés / en équipes et à la mobilité géographique selon les besoins.</p>
@ -78,12 +114,8 @@ li { margin: 0 0 1mm 0; }
<ul><li>Service client à haut volume tout en maintenant les normes d'hygiène et de présentation.</li><li>Développement de compétences solides en communication, travail d'équipe et multitâche dans un environnement dynamique.</li></ul> <ul><li>Service client à haut volume tout en maintenant les normes d'hygiène et de présentation.</li><li>Développement de compétences solides en communication, travail d'équipe et multitâche dans un environnement dynamique.</li></ul>
</div> </div>
</section> </section>
</div>
<section class="section"> <aside class="sidecol">
<h2>Formation</h2>
<p>Licence en Commerce International et Logistique — Cumhuriyet Üniversitesi | 2025</p>
</section>
<section class="section skills"> <section class="section skills">
<h2>Compétences</h2> <h2>Compétences</h2>
<p><strong>Opérations d'entrepôt:</strong> préparation de commandes, emballage, réception, étiquetage, mise en stock, chargement/déchargement, contrôle des stocks, 5S</p> <p><strong>Opérations d'entrepôt:</strong> préparation de commandes, emballage, réception, étiquetage, mise en stock, chargement/déchargement, contrôle des stocks, 5S</p>
@ -92,6 +124,13 @@ li { margin: 0 0 1mm 0; }
<p><strong>Langues:</strong> Anglais (C1), Français (A1), Allemand (A1)</p> <p><strong>Langues:</strong> Anglais (C1), Français (A1), Allemand (A1)</p>
<p><strong>Certifications:</strong> Permis de conduire B ; licence de pilote de drone</p> <p><strong>Certifications:</strong> Permis de conduire B ; licence de pilote de drone</p>
</section> </section>
<section class="section">
<h2>Formation</h2>
<p>Licence en Commerce International et Logistique — Cumhuriyet Üniversitesi | 2025</p>
</section>
</aside>
</div>
</main> </main>
</body> </body>
</html> </html>

View file

@ -5,54 +5,86 @@
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
<title>AHMET KEREM ÖZBAY — CV</title> <title>AHMET KEREM ÖZBAY — CV</title>
<style> <style>
:root { --text:#111; --muted:#444; --rule:#ddd; --blue:#0B3D91; } :root { --text:#111; --muted:#4b4b4b; --rule:#e3e3e3; --blue:#0B3D91; }
@page { size: A4; margin: 12mm; } @page { size: A4; margin: 12mm; }
* { box-sizing: border-box; }
html, body { margin:0; padding:0; } html, body { margin:0; padding:0; }
body { body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
color: var(--text); color: var(--text);
background: #fff; background: #fff;
font-size: 10.5pt; font-size: 10.2pt;
line-height: 1.24; line-height: 1.25;
-webkit-print-color-adjust: exact; -webkit-print-color-adjust: exact;
print-color-adjust: exact; print-color-adjust: exact;
} }
.page { position: relative; background: #fff; } .page { position: relative; background: #fff; }
.header { position: relative; padding-right: 32mm; }
.header {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 8mm;
padding-bottom: 3mm;
margin-bottom: 3mm;
border-bottom: 1px solid var(--rule);
}
.header-left { flex: 1; min-width: 0; }
.photo { .photo {
position: absolute; top: 0; right: 0; width: 28mm; height: 28mm;
width: 26mm; height: 26mm;
border-radius: 4mm; border-radius: 4mm;
object-fit: cover; object-fit: cover;
background: #f2f2f2; background: #f2f2f2;
border: 1px solid #eee;
} }
h1 { font-size: 18pt; margin: 0 0 1.5mm 0; letter-spacing: .2px; }
.subtitle { margin: 0 0 2.5mm 0; color: var(--muted); font-style: italic; } h1 { font-size: 19pt; margin: 0; letter-spacing: .2px; }
.contact { margin: 0 0 3mm 0; } .subtitle { margin: 1mm 0 2mm 0; color: var(--muted); font-style: italic; }
.contact { margin: 0; }
.contact .emph { color: var(--blue); font-weight: 700; } .contact .emph { color: var(--blue); font-weight: 700; }
.contact a { color: var(--text); text-decoration: none; } .contact a { color: var(--text); text-decoration: none; }
.contact a:hover { text-decoration: underline; } .contact a:hover { text-decoration: underline; }
.contact .link { margin-top: 0.5mm; } .contact .link { margin-top: 0.6mm; }
.section { margin-top: 3mm; }
.grid {
display: grid;
grid-template-columns: 1fr 0.44fr;
gap: 8mm;
}
.maincol { min-width: 0; }
.sidecol {
min-width: 0;
padding-left: 6mm;
border-left: 1px solid var(--rule);
font-size: 10pt;
}
.section { margin: 0 0 3mm 0; }
.section h2 { .section h2 {
font-size: 12pt; font-size: 11.5pt;
margin: 0 0 1.5mm 0; margin: 0 0 1.4mm 0;
padding: 0 0 1mm 0; padding: 0 0 0.9mm 0;
border-bottom: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
} }
.entry { margin: 0 0 2mm 0; }
.entry { margin: 0 0 2.2mm 0; }
.entry .title { font-weight: 700; } .entry .title { font-weight: 700; }
.entry .meta { color: var(--muted); } .entry .meta { color: var(--muted); }
ul { margin: 1mm 0 0 4.5mm; padding: 0; }
li { margin: 0 0 1mm 0; } p { margin: 0 0 1.8mm 0; hyphens: auto; }
.skills p { margin: 0 0 1mm 0; } ul { margin: 1mm 0 0 4mm; padding: 0; }
li { margin: 0 0 0.9mm 0; hyphens: auto; }
.skills p { margin: 0 0 1.2mm 0; }
.small { font-size: 10pt; } .small { font-size: 10pt; }
</style> </style>
</head> </head>
<body> <body>
<main class="page"> <main class="page">
<header class="header"> <header class="header">
<img class="photo" src="assets/ahmet_photo.png" alt="Photo" /> <div class="header-left">
<h1>AHMET KEREM ÖZBAY</h1> <h1>AHMET KEREM ÖZBAY</h1>
<div class="subtitle">Operazioni di Magazzino | Logistica e Commercio Internazionale (Laurea Magistrale)</div> <div class="subtitle">Operazioni di Magazzino | Logistica e Commercio Internazionale (Laurea Magistrale)</div>
<div class="contact small"> <div class="contact small">
@ -60,8 +92,12 @@ li { margin: 0 0 1mm 0; }
<div><span class="emph">+90 544 904 3303</span><span class="emph">ozbaykerem18@gmail.com</span></div> <div><span class="emph">+90 544 904 3303</span><span class="emph">ozbaykerem18@gmail.com</span></div>
<div class="link"><a href="https://www.linkedin.com/in/ahmet-kerem-%C3%B6zbay-204505261">linkedin.com/in/ahmet-kerem-özbay-204505261</a></div> <div class="link"><a href="https://www.linkedin.com/in/ahmet-kerem-%C3%B6zbay-204505261">linkedin.com/in/ahmet-kerem-özbay-204505261</a></div>
</div> </div>
</div>
<img class="photo" src="assets/ahmet_photo.png" alt="Photo" />
</header> </header>
<div class="grid">
<div class="maincol">
<section class="section"> <section class="section">
<h2>Sintesi</h2> <h2>Sintesi</h2>
<p>Addetto al magazzino con esperienza pratica in picking, imballaggio, ricezione, etichettatura e sistemazione a scaffale, oltre a una laurea in Commercio Internazionale e Logistica. Forte disciplina nel controllo con codice a barre, verifica delle quantità e mentalità 5S per garantire precisione e flusso sotto le scadenze di spedizione. Inglese C1 e competenze avanzate in Excel/Office. Disponibile a turni di lavoro e trasferimento dove necessario.</p> <p>Addetto al magazzino con esperienza pratica in picking, imballaggio, ricezione, etichettatura e sistemazione a scaffale, oltre a una laurea in Commercio Internazionale e Logistica. Forte disciplina nel controllo con codice a barre, verifica delle quantità e mentalità 5S per garantire precisione e flusso sotto le scadenze di spedizione. Inglese C1 e competenze avanzate in Excel/Office. Disponibile a turni di lavoro e trasferimento dove necessario.</p>
@ -78,12 +114,8 @@ li { margin: 0 0 1mm 0; }
<ul><li>Fornitura di servizio clienti ad alto volume mantenendo gli standard di igiene e presentazione.</li><li>Sviluppo di forti abilità di comunicazione, lavoro di squadra e multitasking in un ambiente frenetico.</li></ul> <ul><li>Fornitura di servizio clienti ad alto volume mantenendo gli standard di igiene e presentazione.</li><li>Sviluppo di forti abilità di comunicazione, lavoro di squadra e multitasking in un ambiente frenetico.</li></ul>
</div> </div>
</section> </section>
</div>
<section class="section"> <aside class="sidecol">
<h2>Istruzione</h2>
<p>Laurea in Commercio Internazionale e Logistica — Cumhuriyet Üniversitesi | 2025</p>
</section>
<section class="section skills"> <section class="section skills">
<h2>Competenze</h2> <h2>Competenze</h2>
<p><strong>Operazioni di Magazzino:</strong> picking, imballaggio, ricezione, etichettatura, sistemazione a scaffale, carico/scarico, controllo stock, 5S</p> <p><strong>Operazioni di Magazzino:</strong> picking, imballaggio, ricezione, etichettatura, sistemazione a scaffale, carico/scarico, controllo stock, 5S</p>
@ -92,6 +124,13 @@ li { margin: 0 0 1mm 0; }
<p><strong>Lingue:</strong> Inglese (C1), Francese (A1), Tedesco (A1)</p> <p><strong>Lingue:</strong> Inglese (C1), Francese (A1), Tedesco (A1)</p>
<p><strong>Certificazioni:</strong> Patente di guida B; licenza di pilota UAV</p> <p><strong>Certificazioni:</strong> Patente di guida B; licenza di pilota UAV</p>
</section> </section>
<section class="section">
<h2>Istruzione</h2>
<p>Laurea in Commercio Internazionale e Logistica — Cumhuriyet Üniversitesi | 2025</p>
</section>
</aside>
</div>
</main> </main>
</body> </body>
</html> </html>

View file

@ -5,54 +5,86 @@
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
<title>AHMET KEREM ÖZBAY — CV</title> <title>AHMET KEREM ÖZBAY — CV</title>
<style> <style>
:root { --text:#111; --muted:#444; --rule:#ddd; --blue:#0B3D91; } :root { --text:#111; --muted:#4b4b4b; --rule:#e3e3e3; --blue:#0B3D91; }
@page { size: A4; margin: 12mm; } @page { size: A4; margin: 12mm; }
* { box-sizing: border-box; }
html, body { margin:0; padding:0; } html, body { margin:0; padding:0; }
body { body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
color: var(--text); color: var(--text);
background: #fff; background: #fff;
font-size: 10.5pt; font-size: 10.2pt;
line-height: 1.24; line-height: 1.25;
-webkit-print-color-adjust: exact; -webkit-print-color-adjust: exact;
print-color-adjust: exact; print-color-adjust: exact;
} }
.page { position: relative; background: #fff; } .page { position: relative; background: #fff; }
.header { position: relative; padding-right: 32mm; }
.header {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 8mm;
padding-bottom: 3mm;
margin-bottom: 3mm;
border-bottom: 1px solid var(--rule);
}
.header-left { flex: 1; min-width: 0; }
.photo { .photo {
position: absolute; top: 0; right: 0; width: 28mm; height: 28mm;
width: 26mm; height: 26mm;
border-radius: 4mm; border-radius: 4mm;
object-fit: cover; object-fit: cover;
background: #f2f2f2; background: #f2f2f2;
border: 1px solid #eee;
} }
h1 { font-size: 18pt; margin: 0 0 1.5mm 0; letter-spacing: .2px; }
.subtitle { margin: 0 0 2.5mm 0; color: var(--muted); font-style: italic; } h1 { font-size: 19pt; margin: 0; letter-spacing: .2px; }
.contact { margin: 0 0 3mm 0; } .subtitle { margin: 1mm 0 2mm 0; color: var(--muted); font-style: italic; }
.contact { margin: 0; }
.contact .emph { color: var(--blue); font-weight: 700; } .contact .emph { color: var(--blue); font-weight: 700; }
.contact a { color: var(--text); text-decoration: none; } .contact a { color: var(--text); text-decoration: none; }
.contact a:hover { text-decoration: underline; } .contact a:hover { text-decoration: underline; }
.contact .link { margin-top: 0.5mm; } .contact .link { margin-top: 0.6mm; }
.section { margin-top: 3mm; }
.grid {
display: grid;
grid-template-columns: 1fr 0.44fr;
gap: 8mm;
}
.maincol { min-width: 0; }
.sidecol {
min-width: 0;
padding-left: 6mm;
border-left: 1px solid var(--rule);
font-size: 10pt;
}
.section { margin: 0 0 3mm 0; }
.section h2 { .section h2 {
font-size: 12pt; font-size: 11.5pt;
margin: 0 0 1.5mm 0; margin: 0 0 1.4mm 0;
padding: 0 0 1mm 0; padding: 0 0 0.9mm 0;
border-bottom: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
} }
.entry { margin: 0 0 2mm 0; }
.entry { margin: 0 0 2.2mm 0; }
.entry .title { font-weight: 700; } .entry .title { font-weight: 700; }
.entry .meta { color: var(--muted); } .entry .meta { color: var(--muted); }
ul { margin: 1mm 0 0 4.5mm; padding: 0; }
li { margin: 0 0 1mm 0; } p { margin: 0 0 1.8mm 0; hyphens: auto; }
.skills p { margin: 0 0 1mm 0; } ul { margin: 1mm 0 0 4mm; padding: 0; }
li { margin: 0 0 0.9mm 0; hyphens: auto; }
.skills p { margin: 0 0 1.2mm 0; }
.small { font-size: 10pt; } .small { font-size: 10pt; }
</style> </style>
</head> </head>
<body> <body>
<main class="page"> <main class="page">
<header class="header"> <header class="header">
<img class="photo" src="assets/ahmet_photo.png" alt="Photo" /> <div class="header-left">
<h1>AHMET KEREM ÖZBAY</h1> <h1>AHMET KEREM ÖZBAY</h1>
<div class="subtitle">Operatio Horrearia | Logistica &amp; Commercium Internationale (Graduatus)</div> <div class="subtitle">Operatio Horrearia | Logistica &amp; Commercium Internationale (Graduatus)</div>
<div class="contact small"> <div class="contact small">
@ -60,8 +92,12 @@ li { margin: 0 0 1mm 0; }
<div><span class="emph">+90 544 904 3303</span><span class="emph">ozbaykerem18@gmail.com</span></div> <div><span class="emph">+90 544 904 3303</span><span class="emph">ozbaykerem18@gmail.com</span></div>
<div class="link"><a href="https://www.linkedin.com/in/ahmet-kerem-%C3%B6zbay-204505261">linkedin.com/in/ahmet-kerem-özbay-204505261</a></div> <div class="link"><a href="https://www.linkedin.com/in/ahmet-kerem-%C3%B6zbay-204505261">linkedin.com/in/ahmet-kerem-özbay-204505261</a></div>
</div> </div>
</div>
<img class="photo" src="assets/ahmet_photo.png" alt="Photo" />
</header> </header>
<div class="grid">
<div class="maincol">
<section class="section"> <section class="section">
<h2>Summarium</h2> <h2>Summarium</h2>
<p>Operator horrearius cum experientia manuali in selectione, confectione, receptione, notatione, et collocatione stocci, praeterea B.A. in Commercio Internationali &amp; Logistica. Disciplina solida in verificatione codicum barralium, quantitatum, et mens 5S ad tutandam accuratiam et fluxum sub terminis expeditionis. Anglica C1 et peritia provecta in Excel/Office. Apertus ad opera vicaria et relocationem ubi necessarium.</p> <p>Operator horrearius cum experientia manuali in selectione, confectione, receptione, notatione, et collocatione stocci, praeterea B.A. in Commercio Internationali &amp; Logistica. Disciplina solida in verificatione codicum barralium, quantitatum, et mens 5S ad tutandam accuratiam et fluxum sub terminis expeditionis. Anglica C1 et peritia provecta in Excel/Office. Apertus ad opera vicaria et relocationem ubi necessarium.</p>
@ -78,12 +114,8 @@ li { margin: 0 0 1mm 0; }
<ul><li>Servitium clientium altivolumen praestiti, servans normas hygienae et praesentationis.</li><li>Consuetudines solidae communicationis, cooperationis, et multitasking in ambiente celeri acquisivi.</li></ul> <ul><li>Servitium clientium altivolumen praestiti, servans normas hygienae et praesentationis.</li><li>Consuetudines solidae communicationis, cooperationis, et multitasking in ambiente celeri acquisivi.</li></ul>
</div> </div>
</section> </section>
</div>
<section class="section"> <aside class="sidecol">
<h2>Educatio</h2>
<p>Baccalaureus Commercii Internationalis et Logisticae — Cumhuriyet Üniversitesi | 2025</p>
</section>
<section class="section skills"> <section class="section skills">
<h2>Peritiae</h2> <h2>Peritiae</h2>
<p><strong>Operatio Horrearia:</strong> selectio, confectio, receptio, notatio, collocatio, oneratio/exoneratio, regimen stocci, 5S</p> <p><strong>Operatio Horrearia:</strong> selectio, confectio, receptio, notatio, collocatio, oneratio/exoneratio, regimen stocci, 5S</p>
@ -92,6 +124,13 @@ li { margin: 0 0 1mm 0; }
<p><strong>Linguae:</strong> Anglica (C1), Francogallica (A1), Germanica (A1)</p> <p><strong>Linguae:</strong> Anglica (C1), Francogallica (A1), Germanica (A1)</p>
<p><strong>Certificationes:</strong> Licentia gubernandi categoriae B; licentia gubernatoris UAV</p> <p><strong>Certificationes:</strong> Licentia gubernandi categoriae B; licentia gubernatoris UAV</p>
</section> </section>
<section class="section">
<h2>Educatio</h2>
<p>Baccalaureus Commercii Internationalis et Logisticae — Cumhuriyet Üniversitesi | 2025</p>
</section>
</aside>
</div>
</main> </main>
</body> </body>
</html> </html>

View file

@ -5,54 +5,86 @@
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
<title>AHMET KEREM ÖZBAY — CV</title> <title>AHMET KEREM ÖZBAY — CV</title>
<style> <style>
:root { --text:#111; --muted:#444; --rule:#ddd; --blue:#0B3D91; } :root { --text:#111; --muted:#4b4b4b; --rule:#e3e3e3; --blue:#0B3D91; }
@page { size: A4; margin: 12mm; } @page { size: A4; margin: 12mm; }
* { box-sizing: border-box; }
html, body { margin:0; padding:0; } html, body { margin:0; padding:0; }
body { body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
color: var(--text); color: var(--text);
background: #fff; background: #fff;
font-size: 10.5pt; font-size: 10.2pt;
line-height: 1.24; line-height: 1.25;
-webkit-print-color-adjust: exact; -webkit-print-color-adjust: exact;
print-color-adjust: exact; print-color-adjust: exact;
} }
.page { position: relative; background: #fff; } .page { position: relative; background: #fff; }
.header { position: relative; padding-right: 32mm; }
.header {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 8mm;
padding-bottom: 3mm;
margin-bottom: 3mm;
border-bottom: 1px solid var(--rule);
}
.header-left { flex: 1; min-width: 0; }
.photo { .photo {
position: absolute; top: 0; right: 0; width: 28mm; height: 28mm;
width: 26mm; height: 26mm;
border-radius: 4mm; border-radius: 4mm;
object-fit: cover; object-fit: cover;
background: #f2f2f2; background: #f2f2f2;
border: 1px solid #eee;
} }
h1 { font-size: 18pt; margin: 0 0 1.5mm 0; letter-spacing: .2px; }
.subtitle { margin: 0 0 2.5mm 0; color: var(--muted); font-style: italic; } h1 { font-size: 19pt; margin: 0; letter-spacing: .2px; }
.contact { margin: 0 0 3mm 0; } .subtitle { margin: 1mm 0 2mm 0; color: var(--muted); font-style: italic; }
.contact { margin: 0; }
.contact .emph { color: var(--blue); font-weight: 700; } .contact .emph { color: var(--blue); font-weight: 700; }
.contact a { color: var(--text); text-decoration: none; } .contact a { color: var(--text); text-decoration: none; }
.contact a:hover { text-decoration: underline; } .contact a:hover { text-decoration: underline; }
.contact .link { margin-top: 0.5mm; } .contact .link { margin-top: 0.6mm; }
.section { margin-top: 3mm; }
.grid {
display: grid;
grid-template-columns: 1fr 0.44fr;
gap: 8mm;
}
.maincol { min-width: 0; }
.sidecol {
min-width: 0;
padding-left: 6mm;
border-left: 1px solid var(--rule);
font-size: 10pt;
}
.section { margin: 0 0 3mm 0; }
.section h2 { .section h2 {
font-size: 12pt; font-size: 11.5pt;
margin: 0 0 1.5mm 0; margin: 0 0 1.4mm 0;
padding: 0 0 1mm 0; padding: 0 0 0.9mm 0;
border-bottom: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
} }
.entry { margin: 0 0 2mm 0; }
.entry { margin: 0 0 2.2mm 0; }
.entry .title { font-weight: 700; } .entry .title { font-weight: 700; }
.entry .meta { color: var(--muted); } .entry .meta { color: var(--muted); }
ul { margin: 1mm 0 0 4.5mm; padding: 0; }
li { margin: 0 0 1mm 0; } p { margin: 0 0 1.8mm 0; hyphens: auto; }
.skills p { margin: 0 0 1mm 0; } ul { margin: 1mm 0 0 4mm; padding: 0; }
li { margin: 0 0 0.9mm 0; hyphens: auto; }
.skills p { margin: 0 0 1.2mm 0; }
.small { font-size: 10pt; } .small { font-size: 10pt; }
</style> </style>
</head> </head>
<body> <body>
<main class="page"> <main class="page">
<header class="header"> <header class="header">
<img class="photo" src="assets/ahmet_photo.png" alt="Photo" /> <div class="header-left">
<h1>AHMET KEREM ÖZBAY</h1> <h1>AHMET KEREM ÖZBAY</h1>
<div class="subtitle">Depo Operasyonları | Lojistik ve Uluslararası Ticaret (Mezun)</div> <div class="subtitle">Depo Operasyonları | Lojistik ve Uluslararası Ticaret (Mezun)</div>
<div class="contact small"> <div class="contact small">
@ -60,8 +92,12 @@ li { margin: 0 0 1mm 0; }
<div><span class="emph">+90 544 904 3303</span><span class="emph">ozbaykerem18@gmail.com</span></div> <div><span class="emph">+90 544 904 3303</span><span class="emph">ozbaykerem18@gmail.com</span></div>
<div class="link"><a href="https://www.linkedin.com/in/ahmet-kerem-%C3%B6zbay-204505261">linkedin.com/in/ahmet-kerem-özbay-204505261</a></div> <div class="link"><a href="https://www.linkedin.com/in/ahmet-kerem-%C3%B6zbay-204505261">linkedin.com/in/ahmet-kerem-özbay-204505261</a></div>
</div> </div>
</div>
<img class="photo" src="assets/ahmet_photo.png" alt="Photo" />
</header> </header>
<div class="grid">
<div class="maincol">
<section class="section"> <section class="section">
<h2>Özet</h2> <h2>Özet</h2>
<p>Sipariş hazırlama, paketleme, mal kabul, etiketleme ve depoya yerleştirme konularında deneyimli depo operatörü, ayrıca Uluslararası Ticaret ve Lojistik lisans mezunu. Barkod kontrol disiplini, miktar doğrulama ve 5S yaklaşımı ile sevkiyat süreçlerinde doğruluk ve akışın korunmasını sağlar. İngilizce C1 ve ileri düzey Excel/Office becerilerine sahip. Gerektiğinde vardiyalı çalışmaya ve taşınmaya açık.</p> <p>Sipariş hazırlama, paketleme, mal kabul, etiketleme ve depoya yerleştirme konularında deneyimli depo operatörü, ayrıca Uluslararası Ticaret ve Lojistik lisans mezunu. Barkod kontrol disiplini, miktar doğrulama ve 5S yaklaşımı ile sevkiyat süreçlerinde doğruluk ve akışın korunmasını sağlar. İngilizce C1 ve ileri düzey Excel/Office becerilerine sahip. Gerektiğinde vardiyalı çalışmaya ve taşınmaya açık.</p>
@ -78,12 +114,8 @@ li { margin: 0 0 1mm 0; }
<ul><li>Yoğun müşteri trafiğinde hijyen ve sunum standartlarını koruyarak yüksek kaliteli hizmet sundu.</li><li>Hızlı tempolu ortamda güçlü iletişim, ekip çalışması ve çoklu görev becerileri geliştirdi.</li></ul> <ul><li>Yoğun müşteri trafiğinde hijyen ve sunum standartlarını koruyarak yüksek kaliteli hizmet sundu.</li><li>Hızlı tempolu ortamda güçlü iletişim, ekip çalışması ve çoklu görev becerileri geliştirdi.</li></ul>
</div> </div>
</section> </section>
</div>
<section class="section"> <aside class="sidecol">
<h2>Eğitim</h2>
<p>Uluslararası Ticaret ve Lojistik Lisans — Cumhuriyet Üniversitesi | 2025</p>
</section>
<section class="section skills"> <section class="section skills">
<h2>Beceriler</h2> <h2>Beceriler</h2>
<p><strong>Depo Operasyonları:</strong> sipariş hazırlama, paketleme, mal kabul, etiketleme, depoya yerleştirme, yükleme/boşaltma, stok kontrolü, 5S</p> <p><strong>Depo Operasyonları:</strong> sipariş hazırlama, paketleme, mal kabul, etiketleme, depoya yerleştirme, yükleme/boşaltma, stok kontrolü, 5S</p>
@ -92,6 +124,13 @@ li { margin: 0 0 1mm 0; }
<p><strong>Diller:</strong> İngilizce (C1), Fransızca (A1), Almanca (A1)</p> <p><strong>Diller:</strong> İngilizce (C1), Fransızca (A1), Almanca (A1)</p>
<p><strong>Sertifikalar:</strong> B sınıfı ehliyet; İHA pilot lisansı</p> <p><strong>Sertifikalar:</strong> B sınıfı ehliyet; İHA pilot lisansı</p>
</section> </section>
<section class="section">
<h2>Eğitim</h2>
<p>Uluslararası Ticaret ve Lojistik Lisans — Cumhuriyet Üniversitesi | 2025</p>
</section>
</aside>
</div>
</main> </main>
</body> </body>
</html> </html>