-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
39 lines (36 loc) · 1.08 KB
/
index.php
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
38
39
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Altruad: Barebones example</title>
<script type="text/javascript">
Alt = window.Alt || {};
Alt.publisher = 1;
</script>
<script src="js/utility.js" type="text/javascript"></script>
<script src="js/visit.js" type="text/javascript"></script>
<script src="js/events.js" type="text/javascript"></script>
<script src="js/jsonp.js" type="text/javascript"></script>
<script src="js/init.js" type="text/javascript"></script>
<script src="js/tooltip.js" type="text/javascript"></script>
<script src="js/ready.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="buttons.css" />
<!-- default tooltip styles, merge into buttons.css when fully customized -->
<style type="text/css">
body {
font-family: arial, sans-serif;
}
.vertical {
display:block;
width:100px;
}
</style>
</head>
<body>
<h1>Vertical</h1>
<span class="altruad vertical"></span>
<div style="clear:both;"></div>
<h1>Horizontal</h1>
<span class="altruad horizontal"></span>
</body>
</html>