-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (46 loc) · 1.42 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="shortcut icon"
href=".//images/netflix-icon.ico"
type="image/x-icon"
/>
<link rel="stylesheet" href="style.css" />
<title>Netflix</title>
</head>
<body>
<nav>
<a href="#"><img src="./images/netfl (1).svg" alt="" /></a>
</nav>
<div class="form-wrapper">
<h2>로그인</h2>
<form action="#">
<div class="form-control">
<input type="text" required/>
<label>이메일 주소 또는 전화번호</label>
</div>
<div class="form-control">
<input type="password" required />
<label>비밀번호</label>
</div>
<button type="submit">로그인</button>
<div class="form-help">
<div class="remember-me">
<input type="checkbox" id="remember-me" />
<label for="remember-me">로그인 정보 저장</label>
</div>
<a href="#">도움이 필요하신가요?</a>
</div>
</form>
<p>Netflix 회원이 아닌가요? <a href="#">지금 가입하세요.</a></p>
<small>
이 페이지는 Google reCAPTCHA의 보호를 받아 사용자가 로봇이 아님을
확인합니다.
<a href="#">자세히 알아보기.</a>
</small>
</div>
</body>
</html>