Site icon 지피디아

SEO를 위한 시멘틱 태그 사용방법

SEO를 위한 시멘틱 태그 사용방법

시멘틱 태그란 결국 Html의 태그를 봇(bot)이 어떻게 받아드리느냐의 문제입니다.

사람이 아닌 크롤러(검색에진의 bot)는 HTML 상의 태그들을 보고 정보성을 판단한 다는 것입니다. 아래 내용이 어렵다면, HMTL의 기초적인 부분부터 확인해보셔야합니다.

SEO 시멘틱 태그 목록

시멘틱 태그 활용 방법

푸터에 들어가는 ©는 “저작권”을 나타내는 HTML 엔티티(Entity)입니다. 이를 사용하면 “©” 문자를 표현할 수 있습니다. 웹 페이지에서는 일반적으로 footer 등에서 저작권 정보를 표시할 때 이 엔티티를 사용합니다.

<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <title>시맨틱 태그 예시</title>
  </head>
  <body>
    <header>
      <h1>My Website</h1>
      <nav>
        <ul>
          <li><a href="#">Home</a></li>
          <li><a href="#">About</a></li>
          <li><a href="#">Contact</a></li>
        </ul>
      </nav>
    </header>
    
    <main>
      <section>
        <h2>About Us</h2>
        <p>We are a company that specializes in creating high-quality web content.</p>
        <p>Our team consists of experienced writers and designers who are dedicated to providing the best service possible.</p>
      </section>
      
      <section>
        <h2>Our Services</h2>
        <article>
          <h3>Content Writing</h3>
          <p>We provide professional content writing services for businesses and individuals.</p>
        </article>
        <article>
          <h3>Web Design</h3>
          <p>We also offer custom web design services to help you create a website that stands out from the rest.</p>
        </article>
      </section>
      
      <aside>
        <h3>Recent Posts</h3>
        <ul>
          <li><a href="#">How to Create a Successful Blog</a></li>
          <li><a href="#">The Importance of SEO for Your Website</a></li>
        </ul>
      </aside>
    </main>
    
    <footer>
      <p>&copy; 2023 My Website. All rights reserved.</p>
    </footer>
  </body>
</html>
Exit mobile version