-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[이학수] Sprint1 #5
The head ref may contain hidden characters: "Basic-\uC774\uD559\uC218-sprint1"
[이학수] Sprint1 #5
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
군더더기 없는 마크업 잘봤습니다. 수고하셨습니다~ 👍
<ul class="links"> | ||
<li><a href="privacy.html">Privacy Policy</a></li> | ||
<li><a href="faq.html">FAQ</a></li> | ||
</ul> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<ul class="links"> | |
<li><a href="privacy.html">Privacy Policy</a></li> | |
<li><a href="faq.html">FAQ</a></li> | |
</ul> | |
<nav aria-label="footer navigation"> | |
<ul class="links"> | |
<li><a href="privacy.html">Privacy Policy</a></li> | |
<li><a href="faq.html">FAQ</a></li> | |
</ul> | |
<nav> |
지금도 충분히 시멘틱하게 잘 해주셨지만, 네비게이션의 경우 메뉴를 nav
태그와 접근성을 위한 aria-label
까지 사용해주면 더 좋겠습니다. 웹표준을 따라 작성하면 문서의 구조와 의미를 보다 더 정확하게 검색엔진과 스크린리더에 전달할 수 있으니까요. 😄
<a href="https://youtube.com/" target="_blank"> | ||
<img src="img/ico-youtube.png" alt="Youtube"> | ||
</a> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<a href="https://youtube.com/" target="_blank"> | |
<img src="img/ico-youtube.png" alt="Youtube"> | |
</a> | |
<a href="https://youtube.com/" target="_blank" rel="noopener noreferrer"> | |
<img src="img/ico-youtube.png" alt="Youtube"> | |
</a> |
target="_blank"
를 사용하여 새 탭이나 새 창에서 링크를 열 때, 열린 새 페이지는 window.opener 객체를 통해 원래 페이지에 접근할 수 있습니다. 이는 잠재적인 보안 위험으로 아래처럼 rel="noopener"를 사용하여 window.opener 참조를 제거를 통해 원래 페이지에 접근할 수 없도록 설정해야 합니다.
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>FAQ | 판다마켓</title> | ||
<!-- pretendard web-font: https://github.com/orioncactus/pretendard --> | ||
<link rel="stylesheet" as="style" crossorigin href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<link rel="stylesheet" as="style" crossorigin href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css"> | |
<link rel="stylesheet" as="style" crossorigin href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css" media="print" onload="this.media='all'"> | |
웹 폰트를 사용할 때, 성능에 대해서도 고민을 하면 좋습니다. 😸
- media="print"
브라우저가 이 스타일시트를 즉시 로드하지 않습니다. 대신, 페이지의 주요 콘텐츠가 먼저 로드됩니다. 즉, 필요에 따라 지연로딩을 하게 설정할 수 있어요. - onload="this.media='all'
스타일시트가 완전히 로드된 후에 이 JavaScript 코드가 실행됩니다.
이렇게 하는 경우, 초기 페이지 로드 시간 단축할 수 있습니다. (즉, 폰트 스타일시트가 페이지 렌더링을 차단하지 않습니다.)
</div> | ||
<!-- /.container --> | ||
</header> | ||
|
||
<section class="section"> | ||
<div class="container"> | ||
<h2>FAQ</h2> | ||
</div> | ||
<!-- /.container --> | ||
</section> | ||
<!-- /.section --> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
불필요한 주석은 제거되면 좋겠습니다. 🙃
<!-- /.container --> | ||
</div> | ||
<!-- / bottom-visual --> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
요구사항
기본
체크리스트 [기본]
1920px
이상이면 하늘색 배경색은 너비를 꽉 채우도록 채워지고, 내부 요소들의 위치는 고정되고, 여백만 커지도록 합니다.1920px
보다 작아질 때, "판다마켓" 로고의 왼쪽 여백200px
"로그인" 버튼의 오른쪽 여백200px
이 유지되고, 화면의 너비가 작아질수록 두 요소간 거리가 가까워지도록 설정합니다.cursor: pointer
로 설정합니다.체크리스트 [심화]
스크린샷
멘토에게