-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (33 loc) · 1.74 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
<html>
<head>
<title>IP Notes Tagger</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="main">
<h2>IP Notes Tagger</h2>
<h3>What is it?</h3>
<p>IP Notes is a free service from <a href="https://browsedns.net">BrowseDNS</a> to track and count the number of unique active users within the last 20 minutes on your domain. This is useful to display a "live count" of how many people are on a page at a time.</p>
<h3>How to use</h3>
<p>To count up a unique view, add the following code to the page served off the domain that you want to track:</p>
<pre>
<script src="https://ipnotes.page/tag"></script>
</pre>
<p>To display the count, add the following code to the page where you want to display the count, replacing <code>example.com</code> with your domain:</p>
<pre>
<iframe src="https://ipnotes.page/view?domain=example.com" width="256px" height="100px" frameborder="0"></iframe>
</pre>
<h4>Example</h4>
<p>Here are the number of users currently on this page!</p>
<iframe src="https://ipnotes.page/view?domain=ipnotes.page" width="256px" height="100px" frameborder="0"></iframe>
<!--
<p>You can add some additional parameters to the widget URL to customize its appearance:</p>
<ul>
<li><pre>domain</pre></li> - The domain to display counted users for. Required.
<li><pre>color</pre></li> - The text color of the widget. Default is <pre>#000000</pre>.
<li><pre>background</pre></li> - The background color of the widget. Default is <pre>#ffffff</pre>.
</ul>
-->
</div>
</body>
</html>