-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractice.html
More file actions
37 lines (37 loc) · 1.03 KB
/
practice.html
File metadata and controls
37 lines (37 loc) · 1.03 KB
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
<!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">
<title>Practice 4 - Newfilx</title>
<link rel="stylesheet" href="./css/login.css">
</head>
<body>
<img class="login-img" src="./img/login-img.png" alt="login-img">
<div class="login-title">
<h1 class="login-title__maintext">Newfilx</h1>
<p class="login-title__subtext">
새로운 OTT 뉴플릭스 등장!<br>
지금 가입하면 무료!
</p>
</div>
<form class="login-form" action="find.html">
<input
name="id"
type="text"
required
autocomplete="off"
placeholder="ID"
>
<input
name="password"
type="password"
required
autocomplete="off"
placeholder="PW"
>
<input type="submit" value="접속하기">
</form>
</body>
</html>