-
Notifications
You must be signed in to change notification settings - Fork 2
/
example.html
34 lines (33 loc) · 1.02 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/kognise/water.css@latest/dist/light.min.css">
<link rel="stylesheet" href="dist/tooltip.css">
<title>Example of Aristotle Tooltip</title>
</head>
<body>
<h1>Tooltip Examples</h1>
<h2>
Simple Example
</h2>
<p>A <a href="#" data-aristotle-concept-id="602811">Person</a> is a human being.</p>
<hr>
<h2>
More complicated example with longer description and title
</h2>
<p><em data-aristotle-concept-id="498427"> Activity based funding: Admitted acute hospital care DSS 2013-2014</em></p>
<hr>
<h2>A failing link</h2>
<p>This is a <a href="#" data-aristotle-concept-id="3fhdsfjh48">failing link</a>.</p>
<hr>
<script src="https://cdn.jsdelivr.net/npm/es6-promise@4/dist/es6-promise.auto.min.js"></script>
<script src="dist/aristotletooltip.min.js"></script>
<script>
const options = {
'url': 'https://registry.aristotlemetadata.com',
};
aristotleTooltip(options);
</script>
</body>
</html>