/* ═══ 사일삼 탑바(헤더) — 인블로그 이식본 ═══
본사이트 솔리드(라이트) 헤더 기준. fixed 대신 sticky(콘텐츠 안 가림).
드롭다운은 순수 CSS hover라 JS 불필요. */
#siteHeader, #siteHeader * { margin: 0; padding: 0; box-sizing: border-box; }
#siteHeader {
position: sticky; top: 0; z-index: 1000;
height: 70px; display: flex; align-items: center;
background: #fff; box-shadow: 0 4px 24px rgba(0,0,0,.08);
border-bottom: 1px solid rgba(0,0,0,.06);
font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
system-ui, Roboto, "Helvetica Neue", "Segoe UI",
"Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
}
#siteHeader a { text-decoration: none; }
#siteHeader .hd-bar {
display: flex; align-items: center; justify-content: space-between;
width: 100%; max-width: 1470px; margin: 0 auto; padding: 0 20px;
}
#siteHeader .hdLogo { display: flex; align-items: center; flex-shrink: 0; color: #0E1426; }
#siteHeader .hdLogo img { height: 24px; width: auto; display: block; }
#siteHeader .navLinks { display: flex; align-items: center; gap: 8px; }
#siteHeader .navLink {
padding: 8px 16px; font-size: 15px; font-weight: 500;
color: rgba(14,20,38,.7); border-radius: 8px; transition: background .2s, color .2s;
}
#siteHeader .navLink:hover { background: rgba(0,0,0,.05); color: #0E1426; }
#siteHeader .navLinks > a.navLink { margin-right: 17px; }
#siteHeader .navItem { position: relative; display: inline-flex; align-items: center; }
#siteHeader .navLinkDrop { position: relative; display: inline-flex; align-items: center; gap: 5px; }
#siteHeader .navChev { transition: transform .25s ease; }
#siteHeader .navItem:hover .navChev { transform: rotate(180deg); }
#siteHeader .navItem:hover > .navLinkDrop { background: transparent; }
#siteHeader .navItem:hover > .navLinkDrop::after {
content: ''; position: absolute; left: 16px; right: 16px; bottom: 3px;
height: 2px; background: currentColor; border-radius: 2px;
}
#siteHeader .navDrop {
position: absolute; top: 100%; left: 50%;
transform: translateX(-50%) translateY(8px); padding-top: 24px;
opacity: 0; visibility: hidden; transition: opacity .28s ease, transform .28s ease; z-index: 1001;
}
#siteHeader .navItem:hover .navDrop,
#siteHeader .navItem:focus-within .navDrop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
#siteHeader .navDrop-card {
background: #fff; border-radius: 8px; box-shadow: 0 18px 42px rgba(11,16,32,.14);
border: 1px solid rgba(14,20,38,.05); padding: 20px 14px 22px;
width: max-content; min-width: 170px; max-width: 300px; text-align: left;
}
#siteHeader .navDrop-cat { font-size: 13px; font-weight: 500; color: #929292; margin: 0 0 8px; padding: 0 10px 12px; border-bottom: 1px solid #ededed; }
#siteHeader .navDrop-item { display: block; padding: 9px 10px; border-radius: 6px; transition: background .15s ease; }
#siteHeader .navDrop-item:hover { background: #f5f8fc; }
#siteHeader .navDrop-tt { display: block; font-size: 15px; font-weight: 700; color: #2c313a; line-height: 1.4; transition: color .15s ease; }
#siteHeader .navDrop-item:hover .navDrop-tt { color: #2E6BFF; }
#siteHeader .navDrop-desc { display: block; font-size: 13px; font-weight: 400; color: #8a8f98; line-height: 1.4; margin-top: 3px; }
#siteHeader .hd-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
#siteHeader .navCta {
display: inline-flex; align-items: center; justify-content: center; gap: 6px;
height: 42px; padding: 0 22px; background: #2E6BFF; color: #fff;
font-size: 14px; font-weight: 700; border-radius: 6px; white-space: nowrap;
flex-shrink: 0; transition: box-shadow .25s, transform .25s;
}
#siteHeader .navCta:hover { transform: translateY(-1px); }
#siteHeader .navCta-rocket { width: 18px; height: 18px; flex-shrink: 0; transition: transform .25s ease; }
#siteHeader .navCta:hover .navCta-rocket { animation: navRocketFly .7s ease-in-out infinite; }
@keyframes navRocketFly { 0%,100% { transform: translate(0,0) rotate(0); } 50% { transform: translate(3px,-3px) rotate(-6deg); } }
@media (prefers-reduced-motion: reduce) { #siteHeader .navCta:hover .navCta-rocket { animation: none; transform: translate(2px,-2px); } }
#siteHeader .navDivider { width: 1px; height: 24px; background: rgba(14,20,38,.15); flex-shrink: 0; }
#siteHeader .navPartner {
position: relative; overflow: hidden;
background: linear-gradient(135deg,#0D1017 0%,#2A303D 52%,#0D1017 100%);
border: 1px solid rgba(255,255,255,.1); border-radius: 8px; padding: 8px 14px;
color: rgba(255,255,255,.92); transition: color .2s, border-color .2s;
}
#siteHeader .navPartner::after {
content: ''; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
background: linear-gradient(105deg,transparent 0%,rgba(255,255,255,.14) 50%,transparent 100%);
transform: skewX(-20deg); animation: navPartnerSheen 3.6s ease-in-out infinite; pointer-events: none;
}
@keyframes navPartnerSheen { 0% { transform: translateX(0) skewX(-20deg); } 55%,100% { transform: translateX(475%) skewX(-20deg); } }
@media (prefers-reduced-motion: reduce) { #siteHeader .navPartner::after { animation: none; display: none; } }
#siteHeader .navPartner:hover { color: #fff; border-color: rgba(255,255,255,.24); background: linear-gradient(135deg,#0D1017 0%,#2A303D 52%,#0D1017 100%); }
@media (max-width: 900px) { #siteHeader .navLinks { display: none; } }
@media (max-width: 600px) {
#siteHeader .navCta { padding: 9px 16px; font-size: 13px; }
#siteHeader .navDivider, #siteHeader .navPartner { display: none; }
}/* ═══ 사일삼 푸터 스타일 — 인블로그 이식본 (main.css와 동일 디자인) ═══ */
.ft, .ft * { margin: 0; padding: 0; box-sizing: border-box; }
.ft {
background: #0B0F16; position: relative;
font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
system-ui, Roboto, "Helvetica Neue", "Segoe UI",
"Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
}
.ft-ct { width: 100%; max-width: 1470px; margin: 0 auto; padding-left: 20px; padding-right: 20px; }
.ft-cta-zone { background: transparent; padding: 64px 0 0; }
.ft-cta { position: relative; z-index: 2; display: flex; align-items: center; gap: 40px; background: #2f52e6; border-radius: 24px; padding: 44px 52px; margin-bottom: -96px; overflow: hidden; }
.ft-cta-media { flex: 0 0 32%; display: flex; justify-content: center; align-items: center; }
.ft-cta-illust { width: 100%; max-width: 240px; height: auto; filter: drop-shadow(0 14px 20px rgba(8,12,35,.55)); animation: ftRocketFloat 3.2s ease-in-out infinite; }
@keyframes ftRocketFloat { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-12px) rotate(-3deg); } }
@media (prefers-reduced-motion: reduce) { .ft-cta-illust { animation: none; } }
.ft-cta-body { flex: 1; min-width: 0; }
.ft-cta-title { font-size: 28px; font-weight: 800; line-height: 1.3; letter-spacing: -.5px; color: #fff; margin: 0 0 12px; }
.ft-cta-sub { font-size: 15px; color: rgba(255,255,255,.82); line-height: 1.6; margin: 0 0 22px; }
.ft-cta-actions { display: flex; width: fit-content; max-width: 100%; gap: 8px; padding: 8px; background: linear-gradient(135deg,rgba(255,255,255,.09) 0%,rgba(255,255,255,.02) 40%,rgba(23,23,27,.26) 100%); border: 1px solid rgba(255,255,255,.14); box-shadow: inset 0 1px 0 rgba(255,255,255,.2); border-radius: 8px; margin: 0 0 14px; }
.ft-cta-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 52px; padding: 0 26px; border: 0; border-radius: 6px; font-size: 15px; font-weight: 700; cursor: pointer; white-space: nowrap; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.ft-cta-btn:hover { transform: translateY(-1px); }
.ft-cta-btn:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.ft-cta-primary { background: #fff; color: #1c2a55; }
.ft-cta-primary svg { transition: transform .25s ease; }
.ft-cta-primary:hover svg { animation: ftArrowNudge .7s ease-in-out infinite; }
@keyframes ftArrowNudge { 0%,100% { transform: translateX(0); } 50% { transform: translateX(5px); } }
@media (prefers-reduced-motion: reduce) { .ft-cta-primary:hover svg { animation: none; transform: translateX(4px); } }
.ft-cta-kakao { background: #FEE500; color: #3A1D1D; }
.ft-cta-fine { font-size: 13px; color: rgba(255,255,255,.9); line-height: 1.6; margin: 0; }
.ft-main-zone { background: transparent; padding: 132px 0 0; }
.ft-main { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; border: 1px solid rgba(255,255,255,.14); margin-bottom: 24px; }
.ft-main > * { padding: 32px 40px; }
.ft-main > *:not(:last-child) { border-right: 1px solid rgba(255,255,255,.14); }
.ft-col { display: flex; flex-direction: column; align-items: flex-start; }
.ft-col-t { font-size: 15px; font-weight: 800; color: #fff; margin: 0 0 15px; }
.ft-col-t.ft-col-t-link { color: #fff; text-decoration: none; transition: color .2s ease; }
.ft-col-t-link:hover { color: #5B8FFF; }
.ft-notes-list { width: 100%; margin-top: -8px; }
.ft-notes-row { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding: 6px 0; text-decoration: none; color: rgba(255,255,255,.62); transition: color .2s ease; }
a.ft-notes-row:hover { color: #5B8FFF; }
.ft-notes-title { flex: 1; min-width: 0; font-size: 13px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ft-notes-date { flex: none; font-size: 12px; color: rgba(255,255,255,.4); }
.ft-col-split { padding: 0; align-self: stretch; }
.ft-col-split-item { width: 100%; margin: 0; padding: 32px 40px; box-sizing: border-box; flex: 1; display: flex; align-items: center; justify-content: center; text-align: center; }
.ft-col-split-item:first-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.ft-biz { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; flex-wrap: wrap; font-size: 12.5px; color: #C2C3C4; line-height: 1.6; margin: 0 0 24px; }
.ft-biz-tag { flex: none; white-space: nowrap; }
.ft-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0 40px; }
.ft-bottom-brand { display: flex; align-items: center; gap: 10px; }
.ft-bottom-logo { height: 16px; width: auto; display: block; filter: brightness(0) invert(1); opacity: .75; }
.ft-copy { font-size: 13px; line-height: 16px; color: rgba(255,255,255,.5); margin: 0; }
.ft-bottom-links { display: flex; align-items: center; gap: 22px; }
.ft-bottom-links a { font-size: 13px; color: rgba(255,255,255,.62); text-decoration: none; transition: color .2s ease; }
.ft-bottom-links a:hover { color: #5B8FFF; }
.ft-bottom-notice { font-size: 13px; color: rgba(255,255,255,.4); }
.ft-bottom-social { display: flex; align-items: center; gap: 10px; }
.ft-bottom-social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.08); display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,.55); transition: background .2s ease, color .2s ease; }
.ft-bottom-social a:hover { background: rgba(255,255,255,.18); color: #fff; }
.ft-bottom-social svg { display: block; width: 17px; height: 17px; }
@media (max-width: 900px) {
.ft-main { grid-template-columns: 1fr; }
.ft-main > * { padding: 24px; }
.ft-main > *:not(:last-child) { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
}
@media (max-width: 640px) {
.ft-cta { flex-direction: column; gap: 24px; padding: 34px 26px; text-align: center; margin-bottom: -74px; }
.ft-cta-media { flex: none; }
.ft-cta-illust { max-width: 150px; }
.ft-cta-title { font-size: 22px; }
.ft-cta-actions { flex-direction: column; width: auto; }
.ft-cta-btn { width: 100%; }
.ft-cta-fine { text-align: left; }
.ft-main-zone { padding-top: 104px; }
.ft-bottom { flex-direction: column; align-items: flex-start; padding-bottom: 32px; }
}/* ── 컨테이너 (디자인 토큰: 413.co.kr main.css와 동일 값) ── */
.nt-container {
--c-blue: #2E6BFF;
max-width: 1200px;
margin: 0 auto;
padding: 24px 20px 100px;
font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
system-ui, Roboto, "Helvetica Neue", "Segoe UI",
"Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
}
.nt-container * { margin: 0; padding: 0; box-sizing: border-box; }
/* ── 카테고리 탭 (구 nt-tabs) ── */
.nt-tabs { display: flex; flex-wrap: wrap; gap: 26px; align-items: center; margin-bottom: 44px; }
.nt-tab {
font-size: 20px; font-weight: 600; color: #a2a8b2; line-height: 1.4;
text-decoration: none; transition: color .2s ease;
}
.nt-tab:hover { color: #5b6472; }
.nt-tab.active { color: #111318; }
/* ── 글 목록 행 (구 nt-row) ── */
.nt-list-rows { display: flex; flex-direction: column; gap: 14px; }
.nt-row {
border: 1px solid #eaecf0; background: #fff;
transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.nt-row:hover { border-color: #111318; box-shadow: 0 10px 26px rgba(20,30,55,.08); transform: translateY(-2px); }
.nt-row-pinned { border-left: 3px solid var(--c-blue); }
.nt-row-link {
display: flex; align-items: center; justify-content: space-between;
gap: 40px; padding: 48px 54px; text-decoration: none; color: inherit;
}
.nt-row-text { flex: 1; min-width: 0; }
.nt-row-title {
font-size: 22px; font-weight: 800; color: #1a1c22; line-height: 1.45;
letter-spacing: -.4px; margin: 0 0 13px;
display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.nt-row-desc {
font-size: 16px; color: #5b6472; line-height: 1.6; margin: 0 0 17px;
display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.nt-row-date { font-size: 13px; color: #9aa1ac; margin: 0; }
.nt-row-thumb {
flex: none; width: 250px; aspect-ratio: 1200/630; border-radius: 8px;
background-color: #000; background-size: contain;
background-repeat: no-repeat; background-position: center;
}
/* ── 반응형 (구 900px/600px 브레이크포인트) ── */
@media (max-width: 900px) {
.nt-row-link { padding: 34px 32px; gap: 26px; }
.nt-row-thumb { width: 200px; }
}
@media (max-width: 600px) {
.nt-tabs { gap: 18px; margin-bottom: 30px; }
.nt-tab { font-size: 17px; }
.nt-row-link { gap: 16px; padding: 24px 20px; }
.nt-row-thumb { width: 110px; }
.nt-row-title { font-size: 17px; }
.nt-row-desc { font-size: 14px; }
}
/* 호스트(인블로그) 전역 a:hover 밑줄 규칙 방어 — 특이도 상향 */
a.nt-tab, a.nt-tab:hover, a.nt-row-link, a.nt-row-link:hover { text-decoration: none; }
(Sample) 인블로그 대시보드 사용 가이드: 블로그 설정, 에디터 사용법, 문의폼 관리 및 리드 생성까지
인블로그 대시보드에 대한 사용법을 안내합니다. 블로그 초기 설정 방법, 에디터 사용법, 온페이지 SEO 설정, 문의 폼 생성과 관리, 그리고 수집된 리드를 확인하는 방법을 다룹니다.

전문직 블로그, 인블로그로 시작하세요
병원·법무법인·세무사 사무소 전용 인프라 — 서브도메인 즉시 발급, 분야·지점별 분리 운영, GSC 연동, AEO/GEO 최적화
무료로 시작하기 →
1. 블로그 설정하기
1.1. 기본 설정
왼쪽 사이드바에서 "블로그 설정"을 클릭하면 별도의 코딩 작업 없이 블로그를 설정할 수 있습니다.
일반 설정
설정 탭 > 제목, 설명 섹션
설정 탭 > 로고, 파비콘 섹션
설정 탭 > 언어, 타임존, OG 이미지 섹션언어: 원하는 언어를 선택합니다. <html> 태그의 lang 속성에 반영되어 국가별 SEO에 도움을 줍니다.
OG 이미지: 링크를 LinkedIn이나 Slack 등, 외부 채널에 공유할 때 표시되는 Opengraph 이미지입니다 (권장 크기: 1200 x 630).
설정 탭 > 추천 게시글 및 프리셋 색상 섹션1.2. 커스텀 블로그 디자인
왼쪽 사이드바에서 "디자인"을 클릭하여 블로그의 디자인 커스터마이징이 가능합니다.
헤더
좌측 상단에 표시될 로고 및 로고 클릭시 연결될 URL을 설정합니다.
우측 상단의 헤더 메인 CTA의 스타일, 텍스트 및 연결할 기능을 편집할 수 있습니다.
네비게이션 메뉴 레이아웃을 커스터마이징할 수 있습니다.
헤더 상단에 공지사항 표시줄을 추가하고 편집할 수 있습니다.
완전히 내 웹사이트의 헤더와 동일한 헤더를 원할 경우, 커스텀 코드 기능을 활용해 코드 레벨로 편집된 헤더를 추가할 수 있습니다.
배너
배너 레이아웃, 배경 색상 또는 배경 이미지를 편집할 수 있습니다.
인블로그가 제공하는 기본 배너 레이아웃을 원하지 않을 경우, 커스텀 코드 기능을 활용해 코드 레벨로 편집된 배너를 추가할 수 있습니다.
레이아웃
3가지 기본 게시글 레이아웃 중 하나를 선택하여 반영할 수 있습니다.
기본 레이아웃 이외의 레이아웃을 원하실 경우, 커스텀 코드 기능을 활용해 코드 레벨로 편집된 레이아웃을 추가할 수 있습니다.
푸터
추가 기능
1.3. 다른 서비스와의 연동
설정 탭 > 서비스 연동 섹션inblog는 공식적으로 Google Search Console(GSC) 및 Google Analytics(GA), Zapier와의 연동을 지원합니다.
설정 탭 > 코드 삽입 섹션또한 코드 인젝션을 통해 Intercom, Hotjar, Amplitude, Mixpanel과 같은 서드파티 도구를 연동할 수 있습니다.
1.4. 팀원 관리하기
팀원 탭왼쪽 사이드바에서 "팀원" 탭을 클릭하여 블로그에 팀 멤버를 추가합니다.
세 가지 사용자 역할이 있습니다:
소유자(Owner):
블로그에 대한 모든 권한을 가집니다. 모든 콘텐츠, 멤버, 블로그 설정 및 옵션을 관리할 수 있습니다. 워크스페이스당 한 명의 소유자만 가능하며, 소유권 이전 기능을 통해 다른 멤버에게 소유권을 이전할 수 있습니다.
편집자(Editor): 블로그 삭제 및 멤버 관리를 제외한 대부분의 블로그 설정을 관리할 수 있습니다. 모든 게시글을 편집하고 발행할 수 있습니다.
작성자(Author): 자신에게 할당된 게시글을 생성, 편집 및 삭제할 수 있습니다.
1.5. 콘텐츠 카테고리 설정하기
카테고리 탭왼쪽 사이드바에서 "카테고리"를 클릭하여 블로그 게시글을 카테고리별로 정리합니다.
"추가"를 클릭하여 새 카테고리를 생성합니다.
휴지통 아이콘을 클릭하여 카테고리를 삭제합니다 (게시글은 삭제되지 않습니다).
이름 열 내에서 카테고리를 드래그 앤 드롭하여 순서를 재배열합니다.
2. 콘텐츠 작성하기
블로그 기본 설정이 완료되었습니다! 🎉
이제 가장 중요한 부분인 콘텐츠 작성에 대해 알아보겠습니다.
2.1. 기본 콘텐츠 설정
왼쪽 사이드바에서 "새 게시글"을 클릭하여 새 블로그 게시글 작성을 시작합니다.

게시글 제목 (H1 태그, <title> 태그)
게시글 제목은 HTML 구조에서 자동으로 H1 태그로 지정됩니다. H1 태그는 Google 및 기타 검색 엔진이 콘텐츠의 주요 주제를 이해하는 데 도움을 줍니다.
메타 타이틀을 별도로 설정할 경우, 제목과 별도로 <title> 태그를 설정할 수 있습니다. <title> 태그는 페이지 내부가 아닌, 검색 엔진 및 외부 링크에서 보여지는 제목으로 활용됩니다.
게시글 설명 (디스크립션)
게시글 설명은 자동으로 검색 엔진용 메타 디스크립션으로 사용됩니다. 검색 결과에서 페이지의 요약을 제공하고 사용자의 클릭을 유도하는 데 도움을 줍니다.
게시글 내부에서 보여지는 디스크립션과, 검색 엔진에 보여질 메타 디스크립션을 별도로 설정할 수 있습니다.
오른쪽 사이드바의 "Google 검색 엔진 미리보기" 섹션에서 <title>과 <meta name=”description” />으로 설정된 메타 정보를 미리 볼 수 있습니다.
대표 이미지 (OG 이미지)

대표 이미지는 OG(Open Graph) 이미지로 설정됩니다. 이미지를 선택하지 않으면 기본 이미지가 적용됩니다.
📌 권장 크기: 1200 × 630 px (비율이 맞지 않는 이미지는 잘릴 수 있습니다).
이 이미지는 게시글을 LinkedIn과 Facebook, 등 외부 채널에 공유할 때 표시됩니다. 오른쪽 사이드바 하단의 "소셜 공유" 섹션에서 미리 볼 수 있습니다.
카테고리 설정

제목 위의 "+카테고리"를 클릭하여 카테고리를 할당합니다. 아직 카테고리를 만들지 않았다면 "카테고리 편집"을 클릭하여 설정합니다.
🔹 자동 저장이 활성화되어 있어 페이지를 나가도 콘텐츠가 손실되지 않습니다.
URL 설정

페이지 상단에서 게시글의 커스텀 URL을 설정할 수 있습니다.
Google은 더 나은 SEO를 위해 사람이 읽을 수 있는 URL을 사용할 것을 권장합니다. 기본적으로 게시글 제목이 URL로 사용됩니다. 랭킹 패널티 없이 한글 URL도 사용할 수 있습니다.
인블로그에서 제공하는 AI URL 자동 생성 기능을 활용해, 제목과 게시글 설명을 기반으로 URL을 자동 최적화할 수 있습니다.
게시 날짜

디스크립션 하단의 UI에서 게시 날짜를 설정합니다.
추천 게시글 섹션

우측 사이드바에서 추천 게시글 섹션을 게시글별로 편집할 수 있습니다.
2.2. 콘텐츠 작성하기
inblog는 콘텐츠를 작성하는 두 가지 방법을 제공합니다: inblog 에디터와 Notion.
오른쪽 사이드바의 "에디터 유형" 드롭다운에서 원하는 방법을 선택할 수 있습니다.
inblog 에디터로 작성하기
오른쪽 사이드바의 "에디터 유형"에서 "inblog 에디터"를 선택합니다.
일반 에디터처럼 작동하며, "/" 명령어를 사용하여 글머리 기호, 코드 블록, 표와 같은 요소를 추가할 수 있습니다.
✅ 사용 가능한 서식 옵션:
Notion으로 작성하기
OG 이미지 편집기 하단의 "노션 불러오기"를 선택합니다.
Notion 페이지 가져오기 단계:

Notion에서 "공유" > "게시" > "웹에 게시" > "링크 복사"를 클릭합니다.
inblog로 돌아와 오른쪽 사이드바의 "Notion 페이지 URL" 필드에 복사한 Notion 페이지 URL을 붙여넣습니다.
⚠️ 알아두어야 할 사항:
콘텐츠 게시하기
모든 설정이 완료되면 오른쪽 상단의 "발행하기" 버튼을 클릭하여 게시글을 발행합니다. 🚀
2.3. CTA 버튼 설정하기
CTA(Call to Action) 버튼 추가하기

에디터 페이지 하단에 게시글 하단에 고정할 수 있는 콜투액션(CTA) 버튼을 설정할 수 있습니다.
"CTA 버튼 추가"를 클릭하여 활성화합니다 (설정하지 않으면 CTA가 표시되지 않습니다).
버튼 텍스트: 짧고 매력적인 메시지를 입력합니다 (2-5단어 권장).
버튼 URL: 목적지 링크를 추가합니다.
버튼 색상: CTA 버튼 색상을 커스터마이징합니다.
리드 폼 설정하기
오른쪽 사이드바의 "리드 폼" 섹션에서 미리 구성된 리드 폼을 선택하여 “폼” 탭에서 제작한 문의 폼을 배치해 사용자 정보를 수집할 수 있습니다.
3. 리드 폼 및 리드 관리하기
3.1. 리드 폼 관리하기
왼쪽 사이드바에서 "폼"을 클릭하여 리드 폼을 관리합니다.

헤더 및 배너에 리드 폼 추가하기
블로그 게시글에 리드 폼 추가하기
3.2. 리드 관리하기

왼쪽 사이드바에서 "리드"를 클릭하여 리드 폼을 통해 제출된 고객 정보를 확인합니다.
✅ 사용 가능한 기능:
4. 콘텐츠 분석 (대시보드) 및 게시글 관리
4.1. 콘텐츠 분석 (대시보드)
왼쪽 사이드바에서 "대시보드"를 클릭하여 분석 데이터를 확인할 수 있습니다.

메인 그래프 주요 지표
📊 방문자 및 오가닉 트래픽 추이
트래픽 및 키워드 인사이트
블로그 유입 경로: 블로그 방문자가 어디에서 오는지 수치와 비율을 확인할 수 있습니다.
구글 검색 성과 (페이지 / 키워드): 서치콘솔에서 받아온 데이터를 활용해, 구글에서 어떠한 키워드로 유입이 되고 있는지, 어떠한 페이지가 성과가 좋은지 확인할 수 있습니다.
방문 수: 키워드당 총 방문(검색엔진에서 결과를 클릭한) 수입니다.
노출 수: 검색 결과에 블로그가 표시된 횟수입니다.
Google 순위(위치): 각 키워드에 대한 블로그의 평균 순위입니다.
📌 게시글별 분석
아래로 스크롤하여 게시글 대시보드를 확인하면 각 게시글의 다음 항목을 분석할 수 있습니다:
방문 수(페이지뷰)
CTA 클릭 수
전환율(CVR)
Google Search Console이 연결되어 있으면 게시글별 상위 키워드와 검색 결과에서의 평균 순위도 추적할 수 있습니다.
4.2. 게시글 관리하기 (게시글 관리자)
왼쪽 사이드바에서 "게시글 관리자"를 클릭하여 Notion 스타일의 데이터 테이블에서 모든 블로그 게시글을 관리합니다.
🔹 50-100개 이상의 게시글을 효율적으로 관리하기에 최적입니다.
Share article