-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (29 loc) · 1004 Bytes
/
Copy pathindex.html
File metadata and controls
30 lines (29 loc) · 1004 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="style.css" />
<script src="color.js" defer></script>
</head>
<body>
<div class="팝업컨테이너">
<div class="선택컨테이너">
<button id="색상선택버튼">색상 선택</button>
</div>
<div class="결과컨테이너">
<div class="결과헤더">선택된 색상</div>
<div class="선택된색상컨테이너">
<div id="선택된색상박스"></div>
<div id="선택된색상텍스트">선택된 색상이 없습니다.</div>
</div>
</div>
<div class="로컬스토리지-컨테이너">
<div class="로컬스토리지-헤더">
<div class="로컬스토리지-저장된색상">저장된 색상</div>
<button id="로컬스토리지-초기화">초기화</button>
</div>
<div class="로컬스토리지-바디"></div>
</div>
</div>
</body>
</html>