* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Arial, sans-serif;
background: linear-gradient(135deg, rgba(26, 115, 232, 0.95) 0%, rgba(13, 71, 161, 0.95) 100%),
url(‘https://images.unsplash.com/photo-1568667256549-094345857637?auto=format&fit=crop&w=1920&q=80’);
background-size: cover;
background-position: center;
background-attachment: fixed;
color: #fff;
min-height: 100vh;
}
.hero-section {
padding: 60px 40px 80px;
background: linear-gradient(135deg, rgba(26, 115, 232, 0.92) 0%, rgba(13, 71, 161, 0.92) 100%),
url(‘https://images.unsplash.com/photo-1554224311-beee460ae6ba?auto=format&fit=crop&w=1920&q=80’);
background-size: cover;
background-position: center;
position: relative;
}
.container {
max-width: 1340px;
margin: 0 auto;
padding-right: 420px;
}
.course-content {
max-width: 900px;
}
h1 {
font-size: 42px;
margin-bottom: 20px;
line-height: 1.2;
color: #00E676;
font-weight: 700;
text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}
.course-subtitle {
font-size: 20px;
margin-bottom: 20px;
color: #ffffff;
opacity: 1;
line-height: 1.4;
text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}
.rating {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 12px;
}
.rating-number {
color: #ffd700;
font-weight: bold;
font-size: 18px;
}
.stars {
color: #ffd700;
font-size: 18px;
}
.rating span {
color: #fff;
}
.instructor {
font-size: 16px;
margin-bottom: 16px;
color: #fff;
}
.instructor a {
color: #00E676;
text-decoration: underline;
}
.course-stats {
display: flex;
gap: 24px;
font-size: 15px;
color: #fff;
}
.sidebar-card {
position: fixed;
top: 50%;
right: 40px;
transform: translateY(-50%);
width: 340px;
background: #fff;
padding: 36px 28px;
border-radius: 12px;
box-shadow: 0 8px 24px rgba(0,0,0,.2);
z-index: 100;
text-align: center;
}
.contact-title {
font-size: 26px;
font-weight: 700;
color: #1c1d1f;
margin-bottom: 14px;
}
.contact-subtitle {
font-size: 16px;
color: #6a6f73;
margin-bottom: 28px;
line-height: 1.5;
}
.whatsapp-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 12px;
width: 100%;
background: #25D366;
color: #fff;
text-decoration: none;
padding: 18px 24px;
font-size: 18px;
font-weight: 700;
border-radius: 10px;
transition: all 0.3s;
box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}
.whatsapp-btn:hover {
background: #20BA5A;
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}
.whatsapp-icon {
font-size: 28px;
}
.contact-info {
margin-top: 24px;
padding-top: 24px;
border-top: 1px solid #e8e8e8;
font-size: 14px;
color: #6a6f73;
}
.content-section {
background: rgba(248, 249, 250, 0.95);
padding: 60px 40px;
}
.white-box {
background: #fff;
color: #1c1d1f;
padding: 40px;
border-radius: 8px;
margin-bottom: 24px;
box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.white-box h2 {
margin-bottom: 20px;
font-size: 28px;
color: #1c1d1f;
}
.objectives {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}
.objective-item {
display: flex;
gap: 12px;
font-size: 15px;
}
.checkmark {
color: #1a73e8;
font-weight: bold;
font-size: 18px;
}
.curriculum {
background: #fff;
color: #1c1d1f;
padding: 40px;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.curriculum h2 {
margin-bottom: 12px;
font-size: 28px;
}
.curriculum-info {
margin-bottom: 28px;
font-size: 15px;
color: #6a6f73;
}
.section {
border: 1px solid #d1d7dc;
margin-bottom: 8px;
border-radius: 4px;
overflow: hidden;
}
.section-header {
background: #f7f9fa;
padding: 18px 24px;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
font-weight: bold;
transition: background 0.2s;
}
.section-header:hover {
background: #eef0f2;
}
.section-meta {
font-size: 14px;
color: #6a6f73;
font-weight: normal;
}
.section-content {
display: none;
}
.section.active .section-content {
display: block;
}
.lecture {
padding: 14px 24px;
border-top: 1px solid #e8e8e8;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 14px;
}
.lecture:hover {
background: #f8f9fa;
}
.lecture-title {
display: flex;
align-items: center;
gap: 12px;
}
.requirements {
background: #fff;
color: #1c1d1f;
padding: 40px;
border-radius: 8px;
margin-bottom: 24px;
box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.requirements h2 {
margin-bottom: 20px;
font-size: 28px;
}
.requirements ul {
list-style: disc;
padding-left: 24px;
}
.requirements li {
margin-bottom: 12px;
font-size: 15px;
line-height: 1.6;
}
@media (max-width: 1024px) {
.container {
padding-right: 40px;
}
.sidebar-card {
position: static;
transform: none;
margin: 40px auto;
max-width: 400px;
}
}
@media (max-width: 768px) {
h1 {
font-size: 32px;
}
.objectives {
grid-template-columns: 1fr;
}
.hero-section, .content-section {
padding: 40px 20px;
}
}
Tarama 360: Dijital Arşivleme ve Belge Yönetimi
Profesyonel Belge Tarama, Dijital Arşiv Sistemleri, Doküman Yönetimi ve E-Dönüşüm Süreçleri – Kurumsal Çözümler 2025
4.9
★★★★★
(1.847 değerlendirme)
8.234 öğrenci
Oluşturan İhsan Talha Şimşek
📅 Son güncelleme: 11/2024
🌐 Türkçe
📝 Türkçe altyazılı
Eğitim Almak İster misiniz?
Kurslarımız hakkında detaylı bilgi almak ve kayıt olmak için bizimle iletişime geçin
💬
WhatsApp ile İletişime Geç
7/24 size yardımcı olmaya hazırız
Öğrenecekleriniz
✓
Profesyonel belge tarama tekniklerini öğreneceksiniz
✓
Dijital arşiv sistemlerini kurabileceksiniz
✓
OCR teknolojisi ile belgeleri aranabilir hale getirebileceksiniz
✓
Doküman yönetim sistemi (DMS) kullanabileceksiniz
✓
E-imza ve e-fatura süreçlerini yönetebileceksiniz
✓
Belge güvenliği ve yedekleme stratejileri oluşturabileceksiniz
✓
Kurumsal belge saklama politikaları geliştirebileceksiniz
✓
İş akışı (workflow) otomasyonu yapabileceksiniz
Kurs içeriği
10 bölüm • 124 ders • 32sa 45dk toplam uzunluk
▼ Dijital Arşivlemeye Giriş
6 ders • 35dk
▶
Hoş Geldiniz! Kurs Tanıtımı
03:20
▶
Dijital Arşivleme Nedir?
08:15
▶
Tarama 360 Yazılımına Giriş
12:40
▶
Kurulum ve İlk Ayarlar
10:45
▶ Profesyonel Belge Tarama Teknikleri
18 ders • 3sa 20dk
▶
Tarayıcı Seçimi ve Ayarları
15:30
▶ OCR ve Metin Tanıma Sistemleri
15 ders • 2sa 50dk
▶ Doküman Yönetim Sistemleri (DMS)
20 ders • 4sa 15dk
▶ E-İmza ve E-Fatura Süreçleri
16 ders • 3sa 40dk
▶ Belge Güvenliği ve Yedekleme
12 ders • 2sa 30dk
▶ İş Akışı Otomasyonu
14 ders • 3sa 10dk
▶ Kurumsal Uygulamalar ve Projeler
10 ders • 2sa 15dk
Gereksinimler
- Temel bilgisayar kullanım bilgisi yeterlidir
- Windows veya Mac işletim sistemli bir bilgisayar
- Tarayıcı cihazı (kurs boyunca öneriler verilecektir)
- Önceden arşivleme bilgisi gerekmez, sıfırdan öğretilecektir
- Kurumsal uygulamalar için internet bağlantısı gereklidir
Açıklama
Dijital Arşivlemede Profesyonel Olun!
Bu kapsamlı eğitim ile dijital arşivleme ve belge yönetiminin tüm aşamalarını öğreneceksiniz.
32 saatlik video içeriği, gerçek kurumsal senaryolar ve uygulamalı projelerle dijital dönüşüm uzmanı olacaksınız.
Kurs boyunca öğrenecekleriniz:
- Profesyonel belge tarama ve dijitalleştirme teknikleri
- OCR (Optik Karakter Tanıma) ile belgeleri aranabilir hale getirme
- Dijital arşiv sistemi kurulumu ve yönetimi
- Doküman yönetim sistemleri (DMS) kullanımı
- E-imza, e-fatura ve e-dönüşüm süreçleri
- Belge güvenliği, erişim kontrolü ve yedekleme stratejileri
- İş akışı (workflow) otomasyonu ve süreç yönetimi
- Kurumsal belge saklama politikaları ve yasal gereklilikler
- Cloud tabanlı arşiv çözümleri
- Veri kurtarma ve felaket senaryoları yönetimi
Kimler İçin Uygundur?
- Arşiv görevlileri ve belge yöneticileri
- Kurumsal dijital dönüşüm uzmanları
- Ofis yöneticileri ve sekreterler
- BT profesyonelleri ve sistem yöneticileri
- Kamu kurumları ve özel sektör çalışanları
- Dijital arşivleme alanında kariyer yapmak isteyenler
Her bölümde gerçek kurumsal senaryolar ve pratik uygulamalarla öğrendiklerinizi pekiştireceksiniz.
Kurs sonunda kurumunuzda dijital dönüşüm projelerini yönetebilecek seviyeye ulaşacaksınız.