-
Notifications
You must be signed in to change notification settings - Fork 28
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 #2
The head ref may contain hidden characters: "Basic-\uB098\uC608\uC9C4-sprint1"
[나예진] sprint1 #2
Conversation
아! 그리고 이번에는 제가 수정했는데 PR 보내주실 때 코드잇 저장소 main 브랜치로 PR 보내시는게 아니라 Basic-나예진으로 보내주셔야 합니다~! :) |
@@ -0,0 +1,76 @@ | |||
<!DOCTYPE html> | |||
<html> |
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.
<html lang="ko">
을 써주시면
SEO, 접근성에 도움이 됩니다!
<link rel="stylesheet" as="style" crossorigin href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css" /> | ||
</head> | ||
<body> | ||
<header> |
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.
대체로 태그를 유의미하게 잘 써주셨네요! 👍
<div class="top-section"> | ||
<div class="content"> | ||
<div class="top-content">일상의 모든 물건을<br>거래해 보세요</div> | ||
<a href="/items.html" class="top_btn">구경하러 가기</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.
class명은 한 가지 케이스로 통일하여 일관성을 맞추는 것이 코드 관리에 좋습니다 :)
class="top-btn"
margin:0; | ||
} | ||
|
||
header { |
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.
지금은 css 파일이 하나라 괜찮지만, 태그에 직접 스타일을 주게 되면 페이지 전체에 영향을 주기 때문에 지양하셔야합니다! 되도록 클래스를 이용해주세요~ :)
<body> | ||
<header> | ||
<div class="header"> | ||
<a href="/"><img src="image/md.png" class="logo"></a><a href="/login.html" class="login">로그인</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.
img를 쓰실 때 alt를 넣어주시는 것이 접근성에 좋습니다!
padding:9px 0; | ||
} | ||
|
||
.logo { |
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 태그의 크기가 커졌습니다!
로고의 왼쪽 빈 공간을 눌러도 a tag가 눌리게 됩니다 😢
<div class="footer-div"> | ||
<span>ⓒ codeit - 2024</span> | ||
<span class="footer-link"> | ||
<span><a href="/privacy.html">Privacy Policy</a></span> |
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.
span이 불필요하게 중첩된 거 같네요!
<footer> | ||
<div class="footer-div"> | ||
<span>ⓒ codeit - 2024</span> | ||
<span class="footer-link"> |
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.
span은 텍스트의 특정부분을 위해 주로 사용됩니다~ 그룹화나 레이아웃 구성은 div를 써주세요 :)
margin: 90px auto; | ||
display: grid; | ||
background-color: #F7F8FA; | ||
padding: 0 30px; |
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.
이 패딩 값 때문에 이미지 옆에 빈 공간이 보이네요! 요구 사항과 다릅니다!
요구사항
UI 디자인 기초 토픽을 수강해 보세요.
피그마 디자인에 맞게 페이지를 만들어 주세요.
React와 같은 UI 라이브러리를 사용하지 않고 진행합니다.
HTML, CSS 파일을 Netlify로 배포해 주세요. (참고: https://www.codeit.kr/learn/5309)
PC사이즈만 고려해 주어진 디자인으로 구현합니다.
기본
심화
주요 변경사항
스크린샷
멘토에게