This repository was archived by the owner on Nov 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (42 loc) · 1.31 KB
/
index.html
File metadata and controls
45 lines (42 loc) · 1.31 KB
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
40
41
42
43
44
45
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script language="javascript" src="js/jquery.1.5.2.min.js"></script>
<script language="javascript" src="js/jquery.rotate.2.1.min.js"></script>
<script language="javascript" src="js/jquery.arrow.1.0.0.js"></script>
<script language="javascript" src="demo.js"></script>
<style type="text/css">
h1, h2, h3, h4, h5, h6 {
border: solid 1px;
}
#container, #container_2 {
padding: 50px;
width: 300px;
}
</style>
</head>
<body>
<table>
<tr>
<td>
<div id="container">
<h1>Example of Arrow 1</h1>
<h2>Example of Arrow 2</h2>
<h3>Example of Arrow 3</h3>
<h4>Example of Arrow 4</h4>
</div>
</td>
<td>
<div id="container_2">
<h1>Example of Arrow 5</h1>
<h2>Example of Arrow 6</h2>
<h3>Example of Arrow 7</h3>
<h4>Example of Arrow 8</h4>
</div>
</td>
</tr>
</table>
</body>
</html>