(Basics 10) 블로그 프로젝트: My Skills

SoloLearn HTML 번역


Blog Project: My Skills

블로그 프로젝트: My Skills


  • Let’s create the My Skills section, which is an unordered list of languages you know.
    • 순서가 지정되지 않은 list My Skills를 생성해보자.
  • Use the <ul> tag, in which each item is represented by the <li> tag, to create an unordered list.
    • 각 item이 <li> 태그로 표시되는 <ul> 태그를 사용해서 순서가 지정되지 않은 list를 생성한다.
<h1><span>My Skills</span></h1>
<ul>
   <li>HTML</li>
   <li>CSS</li>
   <li>JavaScript</li>
</ul>

코드 실행 확인


TASK:

  1. Create your own My Skills section.
    • 자신의 My Skills 섹션을 생성한다.
  2. Use the <a> tag to make each list item a link.
    • <a> 태그를 사용해서 각 list item을 링크로 만든다.


QUIZ

  • Fill in the blanks to create a list in which the first item links to www.sololearn.com.
    • 첫 번째 item이 www.sololearn.com에 링크되는 list 생성해라.
<ul>
   <li>
      <a href="https://www.sololearn.com">
         A
      </a>
   </li>
   <li>B</li>
</ul>