-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (32 loc) · 1.38 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
<!doctype html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Colors</title>
<script src="https://code.jquery.com/jquery-3.2.1.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-colorpicker/2.5.1/css/bootstrap-colorpicker.css"/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-colorpicker/2.5.1/js/bootstrap-colorpicker.js"></script>
<link rel="stylesheet" href="style.css">
<script src=script.js></script>
</head>
<body>
<div id="content">
<div class="col-md-3 large" style="background-color: rgb(255, 255, 255)">
<span class="text">#ffffff</span>
<span class="text2">255,255,255</span>
<div class="form-group bottom">
<div class="input-group colorpicker-component color-picker">
<input type="text" value="#000000" class="form-control" placeholder=""/>
<span class="input-group-addon"><i></i></span>
</div>
</div>
</div>
</div>
<button id="new" class="btn btn-default">Nouvelle couleur</button>
</body>
</html>