첫 개인 프로젝트인 스타벅스 클론코딩이다.
HTML, CSS, JS를 이용 나만의 페이지를 구현해야한다.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="0IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WeBucks</title>
<script src="js/login.js" defer></script>
<link rel="stylesheet" href="styles/login.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap" rel="stylesheet">
</head>
<body>
<section class="loginall">
<h1>WeBucks</h1>
<form>
<input id="namemail" type="text" placeholder="전화번호, 사용자 이름 또는 이메일">
<input id="pwput" type="password" placeholder="비밀번호">
<button id="logbtn">로그인</button>
</form>
<a href="#">비밀번호를 잊으셨나요?</a>
</section>
</body>
</html>
*{
box-sizing: border-box;
}
body {
background-color: #edefef;
display: flex;
justify-content: center;
}
h1 {
font-family: 'Dancing Script', cursive;
font-size: 120px;
}
.loginall {
width: 530px;
height: 650px;
background-color: white;
display: flex;
flex-direction: column;
align-items: center;
}
form {
display: flex;
flex-direction: column;
}
input {
height: 30px;
margin-bottom: 15px;
width: 300px;
height: 40px;
border: 1px solid black;
border-radius: 10px;
background-color: #F7F7F7;
}
button {
margin-bottom: 70px;
background-color: #AED3EA;
font-weight: bold;
cursor: pointer;
opacity: 0.5;
border-radius: 5px;
height: 40px;
color: white;
border: 0px;
}
문제풀이는 끝났고 이제는 실전연습 !
미션도 앞으로 거쳐가야할 프로젝트도 아직 많이 남았지만 어떤 고통과 즐거움이 있을지 기대된다