-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (35 loc) · 1.54 KB
/
index.html
File metadata and controls
36 lines (35 loc) · 1.54 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Post-It Notes</title>
<link rel="stylesheet" href="lib/main.css">
<link href='https://fonts.googleapis.com/css?family=Roboto:400,700,500' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.css">
<script type="text/javascript" src="lib/jquery-2.1.4.min.js"></script>
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Shadows+Into+Light" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Indie+Flower|Open+Sans|Shadows+Into+Light" rel="stylesheet">
</head>
<body>
<h1 id="header">POST-IT Notes</h1>
<div id="main-wrap" >
<div id="sidebar">
<div class="note">
<div id="colorButton">
<button id="pink"name="pink">+</button><button id="orange" name="orange">+</button><button id="cyan" name="cyan">+</button><span id="deletesticky"><i class="fa fa-plus"></i></span>
</div>
<div id="inp">
<input class="stickyclass" id="sticky" type="text" placeholder="Add New Notes" maxlength="17" name="stickyinput">
</div>
</div>
</div>
<div id="content-wrap">
<ul id="boardNotes">
</ul>
</div>
</div>
<div id="footer">
<p>Created by Hari(MGH)</p>
</div>
<script type="text/javascript" src="lib/main.js"></script>
</body>
</html>