-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
18 lines (18 loc) · 780 Bytes
/
example.html
File metadata and controls
18 lines (18 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.1.0/css/bootstrap.min.css">
<title>PHP Hit Counter</title>
</head>
<body>
<div class="container my-5">
<h1 class="mb-5">PHP Hit Counter</h1>
<p class="mb-5">A simple PHP and JavaScript AJAX hit counter that counts and displays the number of hits for each page on your website.</p>
<div class="alert alert-primary mb-5">Page Hits: <span class="badge bg-primary" id="hit-count"></span></div>
<p>Developed by <a href="https://robertd.co.uk">Robert Dixon</a></p>
</div>
<script src="hit-counter/js/script.js"></script>
</body>
</html>