-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (33 loc) · 942 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
31
32
33
34
35
<html>
<head>
<title>codebar.io - Exercise 2: Color Picker</title>
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<header>
<img id="logo" src='https://raw.github.com/codebar/planner/master/app/assets/images/logo.png' width='200' />
</header>
<div id="container">
<h1>Color picker</h1>
<input id="color" type="text"> </input>
<button id="add-to-favorite">Add to favorites</button>
<div class="row">
<div class="column">
<div class="preview">
</div>
</div>
<div class="column">
<div id="colors">
</div>
</div>
<br/>
<div class="color-code"></div>
</div>
</div>
<footer>
<div id="content"> by <a href="http://codebar.io">codebar</a> </div>
</footer>
</body>
</html>