-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (29 loc) · 984 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Color-picker</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./node_modules/bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" href="./main.css">
</head>
<body class='container fill'>
<h1>Color Picker</h1>
<div class="row">
<div class="col-sm-12">
<div class="color-editor">
<div class="color-block"></div>
<div class="color-info">
<div class="color-rgb"></div>
<div class="color-hex"></div>
<div class="alpha-slider noselect">
<i></i>
</div>
</div>
</div>
</div>
</div>
<script src="./node_modules/jquery/dist/jquery.slim.min.js" charset="utf-8"></script>
<script src="./js/main.js" charset="utf-8"></script>
</body>
</html>