-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.html
36 lines (32 loc) · 860 Bytes
/
example.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
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-118783215-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-118783215-2');
</script>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Discern</title>
<script src="js/discern.js">
</script>
<script>
const discern = new Discern("YOUR_API_KEY");
</script>
</head>
<body>
<h1> Wow such website, much beauty</h1>
<div id="capture" style="padding: 10px; background: #f5da55">
<h4 style="color: #000; ">Hello world!</h4>
</div>
<div class="container">
<button id="signup"> Sign Up!</button>
</div>
<section>
<button> Dismiss</button>
</section>
</body>
</html>