JSFiddle - React, Tailwind, and code Playground
by king boll
HTML
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PDF Birleştirme: Dosyaları Tek PDF Halinde Düzenleme Rehberi</title>
<meta name="description" content="PDF dosyalarını bir araya getirme yöntemlerini, doğru belge sıralamasını, kullanım alanlarını ve PDF birleştirme sürecinde dikkat edilmesi gereken noktaları keşfedin.">
<meta name="robots" content="index, follow">
<style>
:root {
--ink: #172033;
--body: #586174;
--purple: #6941c6;
--purple-dark: #4c2a91;
--violet: #8b5cf6;
--orange: #f59e0b;
--cream: #fffaf2;
--lavender: #f5f1ff;
--white: #ffffff;
--line: #e7e2ef;
--green: #159957;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
}
body {
font-family: Arial, "Noto Sans", sans-serif;
background: #fbfafc;
color: var(--ink);
line-height: 1.8;
}
a {
color: var(--purple);
}
.container {
width: min(1120px, 92%);
margin: 0 auto;
}
/* =========================
HEADER
========================= */
.site-header {
background: rgba(255,255,255,.96);
border-bottom: 1px solid var(--line);
position: sticky;
top: 0;
z-index: 100;
backdrop-filter: blur(14px);
}
.navbar {
min-height: 70px;
display: flex;
align-items: center;
justify-content: space-between;
}
.brand {
color: var(--ink);
text-decoration: none;
font-size: 23px;
font-weight: 900;
}
.brand span {
color: var(--purple);
}
.nav-links {
display: flex;
align-items: center;
gap: 24px;
}
.nav-links a {
text-decoration: none;
color: #625d6c;
font-size: 14px;
font-weight: 700;
}
.nav-links a:hover {
color: var(--purple);
}
.nav-pill {
background: var(--purple);
color: #fff !important;
...