-
Notifications
You must be signed in to change notification settings - Fork 44
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
[우지석]Week2 #51
The head ref may contain hidden characters: "part1-\uC6B0\uC9C0\uC11D-week2"
[우지석]Week2 #51
Conversation
위클리 미션 진행하시느라 수고 정말 많으셨습니다. 지석님. |
commit 단위를 더욱 자주, 작게 해보시는건 어떠실까요?git을 다룰 때 commit은 "언제 해야 하는가"를 생각해보신 적 있으신가요?
그럼 커밋을 언제 해야 할까요?저는 다음과 같은 룰을 지키며 커밋을 하는걸 권장 드립니다:
관련하여 읽으시면 좋은 아티클을 추천드릴게요:tl;dr관련 변경 사항 커밋 자주 커밋 미완성 작업을 커밋하지 마십시오 커밋하기 전에 코드를 테스트하세요 또한 깃 커밋 메시지 컨벤션도 함께 읽어보세요:tl;dr:커밋 메시지 형식 type: Subject
body
footer 기본적으로 3가지 영역(제목, 본문, 꼬리말)으로 나누어졌다. 메시지 type은 아래와 같이 분류된다. 아래와 같이 소문자로 작성한다. feat : 새로운 기능 추가 |
img/1.png
Outdated
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.
파일명을 의미있게 짓는게 어떨까요?
단순 파일명만 보아도 어떤 이미지인지 유추할 수 있도록 파일명을 짓는게 어떨까요? 😊
index.html
Outdated
<img class="save-img" src="./img/2.png" alt="" /> | ||
</div> | ||
<div class="section"> | ||
<img class="manage-image" src="./img/3.png" alt="manage" /> |
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.
alt
를 좀 더 구체적으로 작성해볼까요?
alt
를 꼼꼼하게 작성했군요 ! 좋은 습관입니다.
다만, alt
는 스크린 리더 사용자에 대한 보조 텍스트가 될 수 있으므로 "어떠한 이미지 인지"를 작성해주는 것이 좋아요 !
alt의 목적
- 인터넷 연결이 끊겼을 때 대체되는 이미지
- 스크린 리더 사용자를 위한 대체 텍스트
- 이미지를 볼 수 없는 환경에서 이미지를 대체하기 위한 텍스트
등 목적을 알게 된다면 alt를 어떻게 사용하시면 될지 알 수 있을 것 같아요.
다음은 하버드 에듀케이션에서 제안하는 alt
규칙입니다:
tl;dr
- Write Good Alt Text
- Add alt text all non-decorative images.
- Keep it short and descriptive, like a tweet.
- Don’t include “image of” or “photo of”.
- Leave alt text blank if the image is purely decorative
- It's not necessary to add text in the Title field.
index.html
Outdated
한 공간에 저장하세요. | ||
</div> | ||
</div> | ||
<img class="save-img" src="./img/2.png" alt="" /> |
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.
엇 여기 alt
는 안써있네요 !
index.html
Outdated
<a href="https://www.facebook.com/" | ||
><img src="./img/facebook.svg" alt="" name="Facebook" | ||
/></a> | ||
<a href="https://twitter.com/" | ||
><img src="./img/twitter.svg" alt="" name="Twitter" | ||
/></a> | ||
<a href="https://youtube.com"> | ||
<img src="./img/youtube.svg" alt="" name="Youtube" | ||
/></a> | ||
<a href="https://instagram.com" | ||
><img src="./img/instagram.svg" alt="" name="instagram" | ||
/></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.
alt
가 모두 비었습니다 !
<a href="https://www.facebook.com/" | |
><img src="./img/facebook.svg" alt="" name="Facebook" | |
/></a> | |
<a href="https://twitter.com/" | |
><img src="./img/twitter.svg" alt="" name="Twitter" | |
/></a> | |
<a href="https://youtube.com"> | |
<img src="./img/youtube.svg" alt="" name="Youtube" | |
/></a> | |
<a href="https://instagram.com" | |
><img src="./img/instagram.svg" alt="" name="instagram" | |
/></a> | |
<a href="https://www.facebook.com/" | |
><img src="./img/facebook.svg" alt="Facebook logo" name="Facebook" | |
/></a> | |
<a href="https://twitter.com/" | |
><img src="./img/twitter.svg" alt="Twitter Logo" name="Twitter" | |
/></a> | |
<a href="https://youtube.com"> | |
<img src="./img/youtube.svg" alt="Youtube Logo" name="Youtube" | |
/></a> | |
<a href="https://instagram.com" | |
><img src="./img/instagram.svg" alt="Instagram Logo" name="instagram" | |
/></a> |
<body> | ||
<nav> | ||
<div class="bar"> | ||
<a href="index.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.
<a href="index.html"> | |
<a href="/"> |
요구사항
기본
https://weekly-mission-jiseok.netlify.app/
심화
주요 변경사항
스크린샷
멘토에게