-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 1003 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>a simple postit manager, that uses javascript and local storage ! </title>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<meta name="robots" content="noindex">
</head>
<body>
<div id="loader"></div>
<div class="container animate-bottom">
<h2>Post-it !</h2>
<div class="btn-container">
<button id="add-new-note" class="btn btn-primary">add a new note</button>
<button id="save-all" class="btn btn-success">save all</button>
</div>
<div class="post-it-container">
<div class="no-postit well lead">Keep cool and have a beer there's no postit here !</div>
</div>
</div>
<script type="text/javascript" src="script.js"></script>
</body>
</html>