Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
✨ 과제 내용
시맨틱 태그를 이용해서 자기소개 페이지를 만들었다.
예시로 보여준 자기소개 페이지와는 다르게 내 자기소개는 세로로 되어있길래 style.css에서 article의 diplay를 flex로 설정해 가로로 보이도록 바꾸었다. 엇 근데 작성하면서 생각난건데 혹시 css는 건드리면 안되는건가요..?
📸 스크린샷(필수)
📚 새로 알게된 내용 혹은 궁금한 점
새로 알게된 내용
<nav>: 내비게이션 영역을 나타내는 태그. 사이트 이동용 링크 묶음, 메뉴, 목차 같은 부분에 사용<a>: 하이퍼링크를 만드는 태그. 다른/같은 페이지의 특정 위치, 파일, 이메일 주소 등으로 연결할 수 있음<figure>: 독립적인 시각 자료나 부가 자료를 묶는 태그. 이미지, 도표, 코드, 예제, 삽화 등을 담을 수 있음.<figcaption>: figure에 대한 설명이나 캡션<section>: 주제별 구획을 나누는 태그.<section>과<div>의 차이:<section>: 의미 있는 내용 구획<div>: 의미 없이 묶는 용도. 주로 스타일/레이아웃용<iframe>: 다른 웹페이지나 외부 콘텐츠를 현재 페이지 안에 삽입하는 태그.궁굼한 점