(Basics 04) 블로그 프로젝트: About Me

SoloLearn HTML 번역


Blog Project: About Me

블로그 프로젝트: About Me



Formatting Text

텍스트 서식


  • Let’s get back to our blog project.
    • 블로그 프로젝트로 돌아가보자.
  • The About Me section will contain a heading that’s wrapped in a <h1> tag, along with two paragraphs that format text using the tags you’ve just learned.
    • About Me 섹션에는 두 개의 토막글과 함께 <h1> 태그로 감싸진 제목이 포함된다.
<h1><span>About Me</span></h1>
<p>
   Hey! I'm <strong>Alex</strong>. Coding has changed my world ...
</p>
<p class="quote">"Declare variables, not war"</p>

코드 실행 확인


TASK:

  1. Create your own About Me section by changing the text.
    • 텍스트를 변경해서 About Me 섹션을 생성해라.
  2. Play around with the code; experiment with formatting text.
    • 코드를 가지고 놀아라. 텍스트 서식을 실험해라.