-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathindex.html
91 lines (68 loc) · 4.31 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>HTML5Sticky - Sticky Notes for the Web !</title>
<!-- Meta tags -->
<meta name="description" content="HTML5 sticky notes application. Create sticky notes for the web !" />
<meta name="keywords" content="HTML5,sticky,notes,stickynote,note,stickies,css3,localstorage,offline,sticky-notes" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico?v=1">
<!-- For non-Retina iPhone, iPod Touch, and Android 2.1+ devices: -->
<link rel="apple-touch-icon-precomposed" href="apple-touch-icon-precomposed.png">
<!-- For first-generation iPad: -->
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="apple-touch-icon-72x72-precomposed.png">
<!-- For iPhone 4 with high-resolution Retina display: -->
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="apple-touch-icon-114x114-precomposed.png">
<!-- CSS -->
<link rel="stylesheet" href="assets/css/main.css?version=1" />
<link rel="stylesheet" href="assets/css/html5sticky.css?version=1" />
<link href='http://fonts.googleapis.com/css?family=Architects+Daughter' rel='stylesheet' />
<!-- JavaScript -->
<!--[if IE]><![endif]-->
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script>!window.jQuery && document.write(unescape('%3Cscript src="assets/js/jquery1.6.2.js"%3E%3C/script%3E'))</script>
<script src="assets/js/respond.min.js"></script>
<script src="assets/js/modernizr.custom.23610.js"></script>
<script src="assets/js/html5sticky.js"></script>
<script src="assets/js/prettyDate.js"></script>
</head>
<body>
<!-- First header has an ID so you can give it individual styles, and target stuff inside it -->
<header id="head">
<a href="index.html">
<h1>HTML5Sticky <br /><small>sticky notes for web !</small></h1>
</a>
<div class="left topsection">
<a href="#" id="addnote" class="tooltip blue-tooltip"><img src="assets/img/add.png" alt="Add a new sticky note"><span>Add a new sticky note</span></a>
<a href="#" id="removenotes" class="tooltip blue-tooltip"><img src="assets/img/remove.png" alt="Remove all sticky notes"><span>Remove all sticky notes</span></a>
</div>
<div class="left topsection">
<a href="#" id="shrink" class="tooltip blue-tooltip"><img src="assets/img/decrease.png" alt="Shrink"><span>Shrink sticky notes</span></a>
<a href="#" id="expand" class="tooltip blue-tooltip"><img src="assets/img/increase.png" alt="Expand"><span>Expand sticky notes</span></a>
</div>
<a id="donate" class="tooltip blue-tooltip" target="_blank" href='https://www.plimus.com/jsp/buynow.jsp?contractId=3035018' title='Secure Online Payments by Plimus'><img src='assets/img/donate.jpg' alt='Secure Online Payments and Credit Card Processing by Plimus' border='0' /><span>Donate Me ?</span></a>
<a id="twitter" class="tooltip blue-tooltip" href="http://twitter.com/#!/sarfraznawaz" target="_blank"><img src="assets/img/twitter.png" alt="Follow Me"><span>Follow me on Twitter</span></a>
</header><!-- #head -->
<div id="main"></div>
<div class="clear"> </div>
<div class="clear"> </div>
<footer>
<a href="http://twitter.com/share" class="twitter-share-button" data-text="#HTML5Sticky - #Sticky #Notes for the #Web ! An #HTML5 App" data-count="horizontal" data-via="sarfraznawaz">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
<!-- Place this tag where you want the +1 button to render -->
<g:plusone size="medium" href="http://sarfraznawaz2005.kodingen.com/html5sticky/"></g:plusone>
<!-- Place this tag after the last plusone tag -->
<script>
(function() {
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
po.src = 'https://apis.google.com/js/plusone.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();
</script>
</footer>
</body>
</html>