forked from makeable/Notificon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
15 lines (15 loc) · 1.02 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<html>
<head>
<!--
Notificon example
n.b. In this example, the favicon is specified in the head as a data uri to avoid browser security restrictions and allow a direct example.
-->
<link type="image/x-icon" rel="icon" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABQklEQVQ4EWP8//8/AzK49fjC/5uPLzA8f/sAWZhBmF+CQVfRgkFN1oARWYIRZsDnbx/+7zqzguHtxxcMbKwcDMJ8EsjqwOwv3z+A5RwMAkDyYIPABoA0rz00g+HX7x9ghZLCCgy+VgkYBpy9dYDh7M0DYENA8iBDmECqQDbDNGPowiIAUrvzNFjPfxaQn0HOxgeAahg+A53/7M0DuLIv3z4wXL5/goEFFGCEALZABekBibOghzY2w0AxAAJvP71A8SrIFeAwwKYJWcxK2wMcqNhihigDkA1DZ7OgC2DjH7u6A5w+QF5AB0ygOCcEQLEECiv0qObhEmBgUpc1IKQfpzxILxMobcNCGadKLBIg243VHCAp0c0kApw8sajDKgTKK+6mEWA5rJmJF2g60GVwzeCUCIxzEAC5FiMzwVUCGaRmZwCgIJ5wJzn5GgAAAABJRU5ErkJggg==">
<script src="notificon.js" type="text/javascript" charset="utf-8"></script>
</head>
<body>
<p>
Label: <input type="text" name="label" id="label" size="2" maxlength="2"><button onClick="Notificon(document.getElementById('label').value)">Change</button>
</p>
</body>
</html>