-
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 #54
The head ref may contain hidden characters: "part1-\uC774\uB0A8\uACBD-week2"
[이남경]Week2 #54
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 파일명에는 띄어 쓰기 대신 |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 파일 명에
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,137 @@ | ||||||
<!DOCTYPE html> | ||||||
<html lang="ko"> | ||||||
<head> | ||||||
<meta charset="UTF-8"> | ||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||||||
|
||||||
<link rel="stylesheet" href="style.css"> | ||||||
<link rel="font-style" type="text/css" href='https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css'> | ||||||
|
||||||
<title>Linkbrary</title> | ||||||
</head> | ||||||
<body> | ||||||
<header> | ||||||
<section class="header"> | ||||||
<a href="/"> | ||||||
<img class="header-logo" src="/images/signin/logo.svg" alt="Linkbrary-logo"> | ||||||
</a> | ||||||
<nav> | ||||||
<a href="/signin.html"> | ||||||
<input class="header-login" type="button" value="로그인"> | ||||||
</a> | ||||||
</nav> | ||||||
</section> | ||||||
</header> | ||||||
<main> | ||||||
Comment on lines
+13
to
+26
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. (예시입니당) 여기서 header가 맞는지 잘 모르겠어요 ㅠㅜ |
||||||
|
||||||
<section class="main"> | ||||||
<h1 class="main-h1"> | ||||||
<span class="main-h1-gradient">세상의 모든 정보</span>를<br> | ||||||
쉽게 저장하고 관리해 보세요 | ||||||
</h1> | ||||||
<a href="/signup.html"> | ||||||
<input class="main-h1-button" type="button" value="링크 추가하기"> | ||||||
</a> | ||||||
<img src="/images/landing/_img.svg" alt="landing-main-image"> | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||||||
</section> | ||||||
|
||||||
<section class="main1"> | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
<section class="main1"> | |
<section class="landing-section__image--left"> |
만약, 1
, 2
와 같은 순서가 숫자로 들어가야 한다거나 디자인을 보았을 때 직관적으로 재사용 가능한 패턴들로 보이는데 각자 다른 고유한 스타일이 들어가야한다면, 스타일 구성이 잘못되었는지도 확인해보면 좋습니다.
BEM: 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.
text-normal
과 같은 의미 있는 클래스명. 훌륭합니다 👍 이런식으로 지어주시면 더욱 좋을 것 같아요 ㅎㅎ
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
<!DOCTYPE html> | ||
<html lang="ko"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
|
||
<link rel="stylesheet" href="style-signin.css"> | ||
<link rel="stylesheet" type="text/css" href='https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css'> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.8.2/css/all.min.css"/> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> | ||
|
||
<title>Linkbrary</title> | ||
</head> | ||
<body> | ||
<main class="main"> | ||
<header> | ||
<a href="/"> | ||
<img class="header-logo" src="/images/signin/logo.svg" alt="Linkbrary-logo"> | ||
</a> | ||
<div> | ||
<span class="header-none">회원이 아니신가요?</span> | ||
<a class="header-deco" href="/signup.html">회원 가입하기</a> | ||
</div> | ||
</header> | ||
<section class="contents"> | ||
<form action="http://localhost/login/php" method="POST"> | ||
<section class="input"> | ||
<section class="input-email"> | ||
<label class="label" for="이메일">이메일</label> | ||
<input class="email" type="email" placeholder="[email protected]"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
</section> | ||
<section class="input-password"> | ||
<label class="label" for="비밀번호">비밀번호</label> | ||
<div class="input-binder"> | ||
<input class="password" type="password"> | ||
<!-- <img src="/images/eye-off.png" alt="eye-off"> --> | ||
<i class="fas fa-eye" style="color: #4a4a4a;"></i> | ||
</div> | ||
</section> | ||
</section> | ||
<p class="login"> | ||
<input class="button" type="submit" value="로그인"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 오호 좋아요 |
||
</p> | ||
</form> | ||
<div class="social-login"> | ||
<span>소셜 로그인</span> | ||
<div class="social-icons"> | ||
<a href="https://www.google.co.kr/" target="_blank"> | ||
<img src="/images/signup/Component 2.svg" alt="google-logo"></a> | ||
<a href="https://www.kakaocorp.com/page/" target="_blank"> | ||
<img src="/images/signin/Component 3.svg" alt="kakao-logo"></a> | ||
</div> | ||
</div> | ||
</section> | ||
</main> | ||
</body> | ||
</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.
해당 파일 확장자를
.svg
로 하신 이유가 있으실까요?svg
는 벡터 이미지를 사용할 때 정하는 확장자입니다 ! 수학적 연산처리로 그래픽을 나타내는 방법이며 낮은 용량과 깨지지 않는 장점이 있어요.해당 이미지는 점과 선으로 이루어지기 어려운 이미지이며 벡터이미지 보다는 픽셀 이미지에 가까운 것 같습니다 !
또한, 단순이
img
라는 파일명 보다는product-image-1
, 혹은introduce-product-image-1
,landing-main-image-1
과 같이 의미 있는 파일명으로 짓는 것이 어떨까요 ? =)