-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
28 lines (24 loc) · 902 Bytes
/
form.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
<!DOCTYPE html>
<html lang="ko-KR">
<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>키보드 조작이 가능한 스위치 버튼 만들기</title>
<link rel="stylesheet" href="./css/form.css" />
</head>
<body>
<div class="switchComponent">
<span class="switch">
<input type="checkbox" class="switchInput switchPrimary" name="playContinue" id="playContinue" />
<label for="playContinue" class="switchLabel">연속재생</label>
</span>
</div>
<div class="switchComponent">
<span class="switch">
<input type="checkbox" class="switchInput switchSecondary" name="profileLock" id="profileLock" />
<label for="profileLock" class="switchLabel switchLabel--full">프로필 잠금설정</label>
</span>
</div>
</body>
</html>