HTML 및 CSS를 사용하여 텍스트에 공백/탭을 삽입하는 방법

HTML 및 CSS를 사용하여 텍스트에 공백/탭을 삽입하는 방법

이 글에서는 다음을 사용하여 텍스트에 공백/탭을 추가하는 방법을 알아봅니다. HTML 그리고 CSS . HTML은 기본적으로 둘 이상의 공백을 지원하지 않는다는 것을 알고 있으므로 텍스트 사이에 추가 공간을 확보하려면 추가 속성이나 CSS가 필요합니다.

다음과 같은 접근 방식을 사용하여 텍스트에 공백/탭을 추가할 수 있습니다.

내용의 테이블

HTML 엔터티 사용

  • 그만큼 문자 엔터티는 고정된 공백인 줄바꿈 없는 공백을 나타내는 데 사용됩니다. 이는 일반 공간의 두 배로 인식될 수 있습니다. 줄바꿈으로 분리할 수 없는 공백을 줄에 만드는 데 사용됩니다.
  • 그만큼 문자 엔터티는 현재 글꼴의 절반 크기를 의미하는 'en' 공백을 나타내는 데 사용됩니다. 이는 일반 공간의 두 배로 인식될 수 있습니다.
  • 그만큼 문자 엔터티는 현재 글꼴의 포인트 크기와 동일함을 의미하는 'em' 공백을 나타내는 데 사용됩니다. 이는 일반 공간의 4배에 달하는 공간으로 인식될 수 있습니다.

통사론

   //   Regular space     //   Two spaces gap     //   Four spaces gap 

예: 이 예에서는 공백을 사용하는 방법을 살펴보겠습니다. ,  및 텍스트 사이에 공백을 추가해야 하는 코드의 &emsp입니다.

HTML
      HTML/CSS를 사용하여 텍스트에 공백/탭을 삽입하는 방법은 무엇입니까? 제목> 머리> <body>  <h1 style='color: green'>techcodeview.comh1> <b>HTML/CSS를 사용하여 텍스트에 공백/탭을 삽입하는 방법은 무엇입니까?b> <p>이곳은 일반 공간입니다.p> <p> 두칸의 공백입니다.p> <p>이것은   4개의 공백 gap.p> body> html>>'>입니다. </tag>  <p dir='ltr'>  <b>  <strong>산출: </strong>  </b>  </p>  <img src='//techcodeview.com/img/css-questions/66/how-insert-spaces-tabs-text-using-html.webp' alt='문자 엔터티'> <h2 id='using-the-tabsize-property-in-css'>  <b>  <strong>CSS에서 탭 크기 속성 사용 </strong>  </b>  </h2> <p dir='ltr'> <span>그만큼 </span>  <span>CSS의 탭 크기 속성 </span>  <span>표시되는 각 탭 문자의 공백 수를 설정하는 데 사용됩니다. 이 값을 변경하면 하나의 탭 문자에 필요한 만큼의 공백을 삽입할 수 있습니다. 그러나 이 방법은 미리 서식이 지정된 텍스트에서만 작동합니다( </span> </p> <tag data-text-3=' tags). The tab character can be inserted by holding the Alt and pressing 0 and 9 together.    Syntax  .tab { tab-size: value;     /* for e.g: value = 2*/ }   Example:   In this example, we are going to implement the above-explained method. html    <html>  <head>  <title>HTML/CSS를 사용하여 텍스트에 공백/탭을 삽입하는 방법은 무엇입니까? 제목> <style>.tab1 { 탭 크기: 2;  } .tab2 { 탭 크기: 4;  } .tab4 { 탭 크기: 8;  } 스타일> 머리> <body>  <h1 style='color: green'>techcodeview.comh1> <b>HTML/CSS를 사용하여 텍스트에 공백/탭을 삽입하는 방법은 무엇입니까?b> <prezalupa>공백이 2개 있는 탭입니다.pre> <prezalupa>공백이 4개 있는 탭입니다.pre> <prezalupa>이것은 8개의 공백이 있는 탭입니다.pre> body> html> 출력: 사용자 정의 CSS 사용 margin-left 속성을 사용하여 일정량의 간격을 제공하는 새 클래스를 생성할 수 있습니다. 공간의 양은 이 속성에 지정된 픽셀 수로 제공될 수 있습니다. 표시 속성도 'inline-block'으로 설정되어 요소 뒤에 줄 바꿈이 추가되지 않습니다. 이렇게 하면 텍스트 및 기타 요소 옆에 공간을 배치할 수 있습니다.    구문 .tab { 디스플레이: 인라인 블록; 여백-왼쪽: 값; /* for e.g.: value = 40px*/ } 예: 이 예에서는 위에서 설명한 방법을 구현해 보겠습니다. HTML <html>  <head>  <title>HTML/CSS를 사용하여 텍스트에 공백/탭을 삽입하는 방법은 무엇입니까? 제목> <style>.tab { 디스플레이: 인라인 블록;  왼쪽 여백: 40px;  } 스타일> 머리> <body>  <h1 style='color: green'>techcodeview.comh1> <b>HTML/CSS를 사용하여 텍스트에 공백/탭을 삽입하는 방법은 무엇입니까?b> <p>이것은 <span>스팬>문서의 탭 공간.p> body> html> 출력: </pre>  </code>
                     </div>

                     <!-- Article Footer with Prominent Share Buttons -->
                     <div class="px-6 md:px-8 py-8 bg-slate-50 dark:bg-slate-900/50 border-t border-slate-200 dark:border-slate-700/50">
                          <div class="flex flex-col sm:flex-row items-center justify-between gap-6">
                              <h4 class="text-base font-bold text-slate-700 dark:text-slate-300 uppercase tracking-wide flex items-center gap-2">
                                 <i class="fa fa-share-alt text-tech-500"> </i>
                                공유하다                              </h4>
                             
                              <div class="flex flex-wrap justify-center gap-3">
                                 <!-- Twitter -->
                                 <a href="https://twitter.com/intent/tweet?text=HTML 및 CSS를 사용하여 텍스트에 공백/탭을 삽입하는 방법&url=https://www.techcodeview.com/ko/how-insert-spaces-tabs-text-using-html" 
                                   target="_blank" rel="noopener noreferrer" 
                                   class="flex items-center gap-2 px-6 py-3 rounded-xl bg-[#1DA1F2]/10 text-[#1DA1F2] hover:bg-[#1DA1F2] hover:text-white transition-all duration-300 font-bold text-sm">
                                     <i class="fa fa-twitter text-lg"> </i>
                                     <span class="hidden sm:inline">Twitter </span>
                                 </a>

                                 <!-- Facebook -->
                                 <a href="https://www.facebook.com/sharer/sharer.php?u=https://www.techcodeview.com/ko/how-insert-spaces-tabs-text-using-html" 
                                   target="_blank" rel="noopener noreferrer"
                                   class="flex items-center gap-2 px-6 py-3 rounded-xl bg-[#4267B2]/10 text-[#4267B2] hover:bg-[#4267B2] hover:text-white transition-all duration-300 font-bold text-sm">
                                     <i class="fa fa-facebook text-lg"> </i>
                                     <span class="hidden sm:inline">Facebook </span>
                                 </a>
                                
                                 <!-- LinkedIn -->
                                 <a href="https://www.linkedin.com/shareArticle?mini=true&url=https://www.techcodeview.com/ko/how-insert-spaces-tabs-text-using-html&title=HTML 및 CSS를 사용하여 텍스트에 공백/탭을 삽입하는 방법" 
                                   target="_blank" rel="noopener noreferrer"
                                   class="flex items-center gap-2 px-6 py-3 rounded-xl bg-[#0077b5]/10 text-[#0077b5] hover:bg-[#0077b5] hover:text-white transition-all duration-300 font-bold text-sm">
                                     <i class="fa fa-linkedin text-lg"> </i>
                                     <span class="hidden sm:inline">LinkedIn </span>
                                 </a>
                              </div>
                          </div>
                     </div>
                </article>

                <!-- Comments Placeholder / Random Articles -->
                <div class="mt-8 bg-white dark:bg-slate-800 border border-slate-200 dark:border-slate-700 rounded-xl p-6 md:p-8 shadow-sm">
                     <h3 class="text-xl font-bold text-slate-900 dark:text-white mb-6 uppercase tracking-wide border-b border-slate-200 dark:border-slate-700 pb-2">
                        마음에 드실지도 몰라요                     </h3>
                     <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
                         <div class="group">
                              <a href="/ko/vi-vs-vim-choosing-first-right-text-editor" class="block aspect-video rounded-lg overflow-hidden bg-slate-200 dark:bg-slate-700 mb-3">
                                 <img loading="lazy" src="https://techcodeview.com/img/geeks-premier-league-2023/88/vi-vs-vim-choosing-first-right-text-editor.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="Vi 대 Vim: 첫 번째 오른쪽 텍스트 편집기 선택" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500">
                              </a>
                              <h4 class="font-bold text-slate-900 dark:text-white leading-tight group-hover:text-tech-500 transition-colors">
                                 <a href="/ko/vi-vs-vim-choosing-first-right-text-editor">Vi 대 Vim: 첫 번째 오른쪽 텍스트 편집기 선택 </a>
                              </h4>
                         </div> <div class="group">
                              <a href="/ko/history-c-language" class="block aspect-video rounded-lg overflow-hidden bg-slate-200 dark:bg-slate-700 mb-3">
                                 <img loading="lazy" src="https://techcodeview.com/img/c-tutorial/35/history-c-language.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="C언어의 역사" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500">
                              </a>
                              <h4 class="font-bold text-slate-900 dark:text-white leading-tight group-hover:text-tech-500 transition-colors">
                                 <a href="/ko/history-c-language">C언어의 역사 </a>
                              </h4>
                         </div>
                     </div>
                </div>
             </div>

             <!-- SECONDARY COLUMN (SIDEBAR) -->
             <!-- Aside Column -->
 <div class="lg:col-span-4 space-y-8">
	
	 <!-- Best Articles Widget -->
	 <div class="rounded-xl bg-white dark:bg-slate-800 border border-slate-200 dark:border-slate-700 p-6 shadow-sm">
		 <div class="mb-4 border-b border-slate-100 dark:border-slate-700 pb-2">
			 <h2 class="text-lg font-bold text-slate-900 dark:text-white uppercase tracking-wide flex items-center">
                 <span class="mr-2 h-2 w-2 rounded-full bg-tech-500"> </span>
                인기 기사             </h2>
		 </div>
		
		 <!-- Owl Carousel Preserved Container -->
		 <div id="owl-carousel-3" class="owl-carousel owl-theme center-owl-nav">
			 <!-- ARTICLE -->
			 <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors">
				 <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700">
					 <a href="/ko/data-independence">
						 <img src="https://techcodeview.com/img/dbms-tutorial/97/data-independence.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="데이터 독립성" class="w-full h-full object-cover">
					 </a>
				 </div>
				 <div class="flex-1 min-w-0">
					 <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug">
                         <a href="/ko/data-independence" class="hover:text-tech-500 transition-colors line-clamp-3">데이터 독립성 </a>
                     </h4>
				 </div>
			 </article>
			 <!-- /ARTICLE --> <!-- ARTICLE -->
			 <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors">
				 <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700">
					 <a href="/ko/python-program-breadth-first-search">
						 <img src="https://techcodeview.com/img/it-problems-solutions/67/python-program-breadth-first-search.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="너비 우선 검색을 위한 Python 프로그램 또는 그래프를 위한 BFS" class="w-full h-full object-cover">
					 </a>
				 </div>
				 <div class="flex-1 min-w-0">
					 <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug">
                         <a href="/ko/python-program-breadth-first-search" class="hover:text-tech-500 transition-colors line-clamp-3">너비 우선 검색을 위한 Python 프로그램 또는 그래프를 위한 BFS </a>
                     </h4>
				 </div>
			 </article>
			 <!-- /ARTICLE --> <!-- ARTICLE -->
			 <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors">
				 <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700">
					 <a href="/ko/sleep-command-linux-with-examples">
						 <img src="https://techcodeview.com/img/linux-command/50/sleep-command-linux-with-examples.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="예제가 포함된 Linux의 sleep 명령" class="w-full h-full object-cover">
					 </a>
				 </div>
				 <div class="flex-1 min-w-0">
					 <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug">
                         <a href="/ko/sleep-command-linux-with-examples" class="hover:text-tech-500 transition-colors line-clamp-3">예제가 포함된 Linux의 sleep 명령 </a>
                     </h4>
				 </div>
			 </article>
			 <!-- /ARTICLE --> <!-- ARTICLE -->
			 <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors">
				 <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700">
					 <a href="/ko/fmovies-alternatives">
						 <img src="https://techcodeview.com/img/alternatives/89/fmovies-alternatives.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="FMovies 대안" class="w-full h-full object-cover">
					 </a>
				 </div>
				 <div class="flex-1 min-w-0">
					 <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug">
                         <a href="/ko/fmovies-alternatives" class="hover:text-tech-500 transition-colors line-clamp-3">FMovies 대안 </a>
                     </h4>
				 </div>
			 </article>
			 <!-- /ARTICLE --> <!-- ARTICLE -->
			 <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors">
				 <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700">
					 <a href="/ko/java-char-keyword">
						 <img src="https://techcodeview.com/img/java-tutorial/33/java-char-keyword.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="자바 문자 키워드" class="w-full h-full object-cover">
					 </a>
				 </div>
				 <div class="flex-1 min-w-0">
					 <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug">
                         <a href="/ko/java-char-keyword" class="hover:text-tech-500 transition-colors line-clamp-3">자바 문자 키워드 </a>
                     </h4>
				 </div>
			 </article>
			 <!-- /ARTICLE --> <!-- ARTICLE -->
			 <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors">
				 <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700">
					 <a href="/ko/von-neumann-model">
						 <img src="https://techcodeview.com/img/coa-tutorial/46/von-neumann-model.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="폰 노이만 모델" class="w-full h-full object-cover">
					 </a>
				 </div>
				 <div class="flex-1 min-w-0">
					 <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug">
                         <a href="/ko/von-neumann-model" class="hover:text-tech-500 transition-colors line-clamp-3">폰 노이만 모델 </a>
                     </h4>
				 </div>
			 </article>
			 <!-- /ARTICLE --> <!-- ARTICLE -->
			 <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors">
				 <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700">
					 <a href="/ko/latex-fractions">
						 <img src="https://techcodeview.com/img/latex-tutorial/76/latex-fractions.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="라텍스 분획" class="w-full h-full object-cover">
					 </a>
				 </div>
				 <div class="flex-1 min-w-0">
					 <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug">
                         <a href="/ko/latex-fractions" class="hover:text-tech-500 transition-colors line-clamp-3">라텍스 분획 </a>
                     </h4>
				 </div>
			 </article>
			 <!-- /ARTICLE --> <!-- ARTICLE -->
			 <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors">
				 <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700">
					 <a href="/ko/how-install-visual-studio-code-windows">
						 <img src="https://techcodeview.com/img/how-install/95/how-install-visual-studio-code-windows.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="Windows에 Visual Studio Code를 설치하는 방법은 무엇입니까?" class="w-full h-full object-cover">
					 </a>
				 </div>
				 <div class="flex-1 min-w-0">
					 <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug">
                         <a href="/ko/how-install-visual-studio-code-windows" class="hover:text-tech-500 transition-colors line-clamp-3">Windows에 Visual Studio Code를 설치하는 방법은 무엇입니까? </a>
                     </h4>
				 </div>
			 </article>
			 <!-- /ARTICLE --> <!-- ARTICLE -->
			 <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors">
				 <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700">
					 <a href="/ko/how-delete-file">
						 <img src="https://techcodeview.com/img/it-problems-solutions/99/how-delete-file.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="CMD를 사용하여 파일이나 폴더를 삭제하는 방법은 무엇입니까?" class="w-full h-full object-cover">
					 </a>
				 </div>
				 <div class="flex-1 min-w-0">
					 <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug">
                         <a href="/ko/how-delete-file" class="hover:text-tech-500 transition-colors line-clamp-3">CMD를 사용하여 파일이나 폴더를 삭제하는 방법은 무엇입니까? </a>
                     </h4>
				 </div>
			 </article>
			 <!-- /ARTICLE --> <!-- ARTICLE -->
			 <article class="flex items-start gap-4 p-2 hover:bg-slate-50 dark:hover:bg-slate-700/50 rounded-lg transition-colors">
				 <div class="w-20 h-20 shrink-0 overflow-hidden rounded-md bg-slate-200 dark:bg-slate-700">
					 <a href="/ko/what-is-apple-touch-icon">
						 <img src="https://techcodeview.com/img/computer/98/what-is-apple-touch-icon.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="Apple 터치 아이콘이란 무엇입니까?" class="w-full h-full object-cover">
					 </a>
				 </div>
				 <div class="flex-1 min-w-0">
					 <h4 class="text-sm font-semibold text-slate-800 dark:text-slate-200 leading-snug">
                         <a href="/ko/what-is-apple-touch-icon" class="hover:text-tech-500 transition-colors line-clamp-3">Apple 터치 아이콘이란 무엇입니까? </a>
                     </h4>
				 </div>
			 </article>
			 <!-- /ARTICLE -->
		 </div>
		

         <!-- Categories -->
		 <div class="mt-8 mb-4 border-b border-slate-100 dark:border-slate-700 pb-2">
			 <h2 class="text-lg font-bold text-slate-900 dark:text-white uppercase tracking-wide">범주 </h2>
		 </div>
		 <div class="flex flex-wrap gap-2">
             <a href="/ko/blog/" class="inline-block px-3 py-1 bg-slate-100 dark:bg-slate-700 text-xs font-medium text-slate-600 dark:text-slate-300 rounded-full hover:bg-tech-500 hover:text-white transition-colors">
                블로그
             </a> <a href="/ko/java-conversion/" class="inline-block px-3 py-1 bg-slate-100 dark:bg-slate-700 text-xs font-medium text-slate-600 dark:text-slate-300 rounded-full hover:bg-tech-500 hover:text-white transition-colors">
                자바 변환
             </a> <a href="/ko/maths/" class="inline-block px-3 py-1 bg-slate-100 dark:bg-slate-700 text-xs font-medium text-slate-600 dark:text-slate-300 rounded-full hover:bg-tech-500 hover:text-white transition-colors">
                수학
             </a> <a href="/ko/java-collections/" class="inline-block px-3 py-1 bg-slate-100 dark:bg-slate-700 text-xs font-medium text-slate-600 dark:text-slate-300 rounded-full hover:bg-tech-500 hover:text-white transition-colors">
                자바 컬렉션
             </a> <a href="/ko/differences/" class="inline-block px-3 py-1 bg-slate-100 dark:bg-slate-700 text-xs font-medium text-slate-600 dark:text-slate-300 rounded-full hover:bg-tech-500 hover:text-white transition-colors">
                차이점
             </a> <a href="/ko/java-string/" class="inline-block px-3 py-1 bg-slate-100 dark:bg-slate-700 text-xs font-medium text-slate-600 dark:text-slate-300 rounded-full hover:bg-tech-500 hover:text-white transition-colors">
                자바 문자열
             </a>
         </div>

         <!-- Interesting Articles Widget -->
		 <div class="mt-8">
			 <div class="mb-4 border-b border-slate-100 dark:border-slate-700 pb-2">
				 <h2 class="text-lg font-bold text-slate-900 dark:text-white uppercase tracking-wide">재미있는 기사 </h2>
			 </div>
			
			 <div id="owl-carousel-4" class="owl-carousel owl-theme">
				 <!-- ARTICLE -->
				 <article class="relative aspect-video rounded-lg overflow-hidden group mb-2">
					 <div class="absolute inset-0">
						 <img src="https://techcodeview.com/img/ms-excel-tutorial/38/tenure-formula-excel.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="Excel의 임기 공식" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500">
                         <div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent"> </div>
					 </div>
					 <div class="absolute bottom-0 left-0 p-4">
						 <div class="text-xs text-tech-400 font-bold mb-1"> <a href="/ko/ms-excel-tutorial/">Ms 엑셀 튜토리얼 </a> </div>
						 <h4 class="text-sm font-bold text-white leading-tight"> <a href="/ko/tenure-formula-excel">Excel의 임기 공식 </a> </h4>
					 </div>
				 </article>
				 <!-- /ARTICLE --> <!-- ARTICLE -->
				 <article class="relative aspect-video rounded-lg overflow-hidden group mb-2">
					 <div class="absolute inset-0">
						 <img src="https://techcodeview.com/img/autocad-tutorial/73/autocad-stretch.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="AutoCAD 스트레치" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500">
                         <div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent"> </div>
					 </div>
					 <div class="absolute bottom-0 left-0 p-4">
						 <div class="text-xs text-tech-400 font-bold mb-1"> <a href="/ko/autocad-tutorial/">Autocad 튜토리얼 </a> </div>
						 <h4 class="text-sm font-bold text-white leading-tight"> <a href="/ko/autocad-stretch">AutoCAD 스트레치 </a> </h4>
					 </div>
				 </article>
				 <!-- /ARTICLE --> <!-- ARTICLE -->
				 <article class="relative aspect-video rounded-lg overflow-hidden group mb-2">
					 <div class="absolute inset-0">
						 <img src="https://techcodeview.com/img/java-collections/61/java-linkedlist-class.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="자바 LinkedList 클래스" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500">
                         <div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent"> </div>
					 </div>
					 <div class="absolute bottom-0 left-0 p-4">
						 <div class="text-xs text-tech-400 font-bold mb-1"> <a href="/ko/java-collections/">자바 컬렉션 </a> </div>
						 <h4 class="text-sm font-bold text-white leading-tight"> <a href="/ko/java-linkedlist-class">자바 LinkedList 클래스 </a> </h4>
					 </div>
				 </article>
				 <!-- /ARTICLE --> <!-- ARTICLE -->
				 <article class="relative aspect-video rounded-lg overflow-hidden group mb-2">
					 <div class="absolute inset-0">
						 <img src="https://techcodeview.com/img/maths-formulas/63/does-coin-flip-really-50-50-probability.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="동전 뒤집기는 정말 50-50 확률인가요?" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500">
                         <div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent"> </div>
					 </div>
					 <div class="absolute bottom-0 left-0 p-4">
						 <div class="text-xs text-tech-400 font-bold mb-1"> <a href="/ko/maths-formulas/">수학 공식 </a> </div>
						 <h4 class="text-sm font-bold text-white leading-tight"> <a href="/ko/does-coin-flip-really-50-50-probability">동전 뒤집기는 정말 50-50 확률인가요? </a> </h4>
					 </div>
				 </article>
				 <!-- /ARTICLE --> <!-- ARTICLE -->
				 <article class="relative aspect-video rounded-lg overflow-hidden group mb-2">
					 <div class="absolute inset-0">
						 <img src="https://techcodeview.com/img/opencv/03/python-opencv-cv2-imshow-method.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="파이썬 OpenCV | cv2.imshow() 메서드" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500">
                         <div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent"> </div>
					 </div>
					 <div class="absolute bottom-0 left-0 p-4">
						 <div class="text-xs text-tech-400 font-bold mb-1"> <a href="/ko/opencv/">오픈Cv </a> </div>
						 <h4 class="text-sm font-bold text-white leading-tight"> <a href="/ko/python-opencv-cv2-imshow-method">파이썬 OpenCV | cv2.imshow() 메서드 </a> </h4>
					 </div>
				 </article>
				 <!-- /ARTICLE --> <!-- ARTICLE -->
				 <article class="relative aspect-video rounded-lg overflow-hidden group mb-2">
					 <div class="absolute inset-0">
						 <img src="https://techcodeview.com/img/dbms-normalization/86/first-normal-form.webp" onerror="this.onerror=null; this.src='https://techcodeview.com/template/assets/images/unnamed.webp'" alt="첫 번째 정규형(1NF)" class="w-full h-full object-cover group-hover:scale-105 transition-transform duration-500">
                         <div class="absolute inset-0 bg-gradient-to-t from-black/80 to-transparent"> </div>
					 </div>
					 <div class="absolute bottom-0 left-0 p-4">
						 <div class="text-xs text-tech-400 font-bold mb-1"> <a href="/ko/dbms-normalization/">Dbms-정규화 </a> </div>
						 <h4 class="text-sm font-bold text-white leading-tight"> <a href="/ko/first-normal-form">첫 번째 정규형(1NF) </a> </h4>
					 </div>
				 </article>
				 <!-- /ARTICLE -->
			 </div>
		 </div>
	 </div>
 </div>
 <!-- /Aside Column -->         </div>
        </div>
     </div>

 <footer class="site-footer">
         <div class="container">
             <span class="footer-links">
                Copyright ©2026 판권 소유 | 
                 <a href="//www.techcodeview.com/ro/">techcodeview.com </a> | 
                 <a href="/disclaimer" rel="nofollow noopener noreferrer" target="_blank">부인 성명 </a> | 
                 <a href="/about-us" rel="nofollow noopener noreferrer" target="_blank">회사 소개 </a> | 
                 <a href="/privacy-policy" rel="nofollow noopener noreferrer" target="_blank">개인 정보 보호 정책 </a> 
             </span>
         </div>
     </footer>
 
     <script type="text/javascript" src="https://techcodeview.com/template/assets/plugins/jquery-1.11.3.min.js"> </script>
     <script type="text/javascript" src="https://techcodeview.com/template/assets/plugins/bootstrap/js/bootstrap.min.js"> </script>    
     <script type="text/javascript" src="https://techcodeview.com/template/assets/js/main.js"> </script>     
	 <script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/11.5.1/highlight.min.js"> </script>
	 <script>
    !function(){"use strict";let t=document.createElement("button");t.id="toTopBtn",t.innerHTML="↑";let e=`
        #toTopBtn {
            position: fixed; bottom: 25px; right: 25px; z-index: 9999; opacity: 0; visibility: hidden; background-color: #0ea5e9; color: white; border: none; border-radius: 8px; width: 50px; height: 50px; font-size: 24px; cursor: pointer; transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        }
        #toTopBtn:hover { background-color: #0284c7; }
    `,i=document.createElement("style");i.type="text/css",i.innerText=e,document.head.appendChild(i),document.body.appendChild(t),window.addEventListener("scroll",()=>{let e=window.scrollY||document.documentElement.scrollTop;e>300?(t.style.opacity="1",t.style.visibility="visible"):(t.style.opacity="0",t.style.visibility="hidden")}),t.addEventListener("click",()=>{window.scrollTo({top:0,behavior:"smooth"})})}();
     </script>
 </body>
 </html>