본문 바로가기
정보 브리핑

정부24로 국세 납세증명서, 5분 컷 발급하기

by 정보운영팀 2025. 11. 28.
반응형

1. 국세 납세증명서, 언제 필요할까?

  • 은행 대출 신청할 때
  • 정부·지자체 지원사업 / 공모 신청할 때
  • 사업자·프리랜서 계약, 입찰 참여할 때

한마디로

“나 국세(세금) 밀린 거 없다”
를 증명하는 서류예요.

 


2. 준비물 & 로그인

  1. 인터넷에서 정부24 접속
  2. 오른쪽 위 [로그인]
    • 간편인증(카카오, 네이버) / 공동·금융인증서 아무거나
  3. PC에서 하면 발급 + 인쇄까지 한 번에 끝내기 좋음

3. 국세 납세증명서 발급 3단계

① 검색하기

  • 상단 검색창에 ‘납세증명서’ 입력
  • 결과에서 [국세 납세증명서] 서비스 클릭

② 신청 정보 입력

  • 발급 대상: 개인 / 개인사업자 중 선택
  • 사용 용도: 은행, 입찰용, 일반용 등 선택
  • 제출처: ○○은행, ○○구청 등 입력(대략 써도 됨)
  • 개인정보·조회 동의 체크 후 [신청]

③ 발급 & 출력

  • 처리 결과에 [발급문서 보기] / [문서출력] 버튼 클릭
  • PDF 열리면 인쇄 또는 PDF 저장해서 사용

4. 이미 발급한 증명서 다시 필요할 때

  • 상단 메뉴 [나의 서비스] → [발급내역] 들어가서
    최근 발급 문서 중 국세 납세증명서 선택 → 다시 열람·인쇄 가능

5. 한 줄 정리

정부24 접속 → ‘납세증명서’ 검색 → 신청 정보 입력 → PDF 출력 또는 저장

반응형

CSS 코드 /* Sliding Banner */ .customBannerArea { position: relative; overflow: hidden; margin: 20px auto; padding: 0 20px; text-align: center; } .customBox { position: relative; overflow: hidden; margin-bottom: 10px; } .customBox iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; } .customBox .backward { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; object-fit: cover; } .customBanner { position: absolute; top: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; z-index: 2; } .customBanner img.cover { width: 100%; height: 100% !important; object-fit: cover; opacity: 0.93; } .customBanner.active img { box-shadow: none !important; } .customBanner.active a { height: 100% !important; } /* ✅ 수정된 화살표 스타일 */ .customBanner .arrow { position: absolute; top: 50%; right: 10px; transform: translateY(-50%); background-color: #2196f3; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; font-weight: bold; z-index: 10; box-shadow: 0 2px 5px rgba(0,0,0,0.3); cursor: pointer; } .banner-bubble { position: absolute; top: 10px; background-color: #bd0000; height: 24px; width: 77px; color: white !important; font-size: 0.75em !important; border-radius: 5px; padding-top: 2px; line-height: 1.2rem !important; } .sliding-banner-300 .banner-bubble:after, .sliding-banner-150 .banner-bubble:after, .sliding-banner-250 .banner-bubble:after { content: ""; position: absolute; bottom: 0; width: 0; height: 0; border: 10px solid transparent; border-top-color: #bd0000; border-bottom: 0; border-left: 0; margin-left: -2.5px; margin-bottom: -5px; } .sliding-banner-280 .banner-bubble:after { content: ""; position: absolute; bottom: 0; width: 0; height: 0; border: 10px solid transparent; border-top-color: #bd0000; border-bottom: 0; border-right: 0; margin-left: -45.5px; margin-bottom: -5px; } .customBanner.active { animation: customMv1 1.2s ease-out infinite; } @keyframes customMv1 { 0% { transform: translate3d(-7%, 0, 0); } 20% { transform: translate3d(-10%, 0, 0); } 40% { transform: translate3d(-5%, 0, 0); } 60% { transform: translate3d(-10%, 0, 0); } 80% { transform: translate3d(-5%, 0, 0); } 100% { transform: translate3d(-7%, 0, 0); } } @media (min-width: 1200px) { .customBannerArea { background-color: #ffffffc9; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); padding: 0px; z-index: 1000; text-align: center; } } /* ✅ 반응형 대응 */ @media (max-width: 768px) { .customBanner .arrow { width: 28px; height: 28px; font-size: 18px; right: 8px; } }