-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (38 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="/assets/style/style.css" />
<script
src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"
integrity="sha512-v2CJ7UaYy4JwqLDIrZUI/4hqeoQieOmAZNXBeQyjo21dadnwR+8ZaIJVT8EE2iyI61OV8e6M8PP2/4hpQINQ/g=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
</head>
<body>
<div class="wrapper">
<div class="wrapper__top">
<div class="wrapper__top__left"></div>
<div class="wrapper__top__right">
<h4 id="clipboard">#f5cd2d</h4>
<button type="button" id="copy">click to copy</button>
</div>
</div>
<div class="wrapper__bottom">
<div class="wrapper__bottom__left">
<h4>choose your color by clicking below</h4>
<input type="color" value="#f5cd2d" id="choose" />
</div>
<div class="wrapper__bottom__right">
<h4>click to generate random color</h4>
<button type="button" id="random">click</button>
</div>
</div>
<div class="popup">copied</div>
</div>
</body>
<script src="index.js"></script>
</html>