forked from foss-np/elibrary-IMS
-
Notifications
You must be signed in to change notification settings - Fork 2
/
accordioncheck.html
57 lines (48 loc) · 1.13 KB
/
accordioncheck.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<html lang="en">
<head><title>ELIMS::E-Library Information Management System</title>
<link rel="shortcut icon" href="images/icon.ico" />
<link rel="stylesheet" type="text/css" href="css/divs.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/my_code.js"></script>
<link href="css/js-image-slider.css" rel="stylesheet" type="text/css" />
<script src="js/js-image-slider.js" type="text/javascript"></script>
<link href="generic.css" rel="stylesheet" type="text/css" />
<script>
$(function() {
$( "#accordion" ).accordion();
});
</script>
</head>
<body>
<div id="accordion">
<h3>Section 1</h3>
<div>
<p>
11 </p>
</div>
<h3>Section 2</h3>
<div>
<p>
22 </p>
</div>
<h3>Section 3</h3>
<div>
<p>
33</p>
<ul>
<li>List item one</li>
<li>List item two</li>
<li>List item three</li>
</ul>
</div>
<h3>Section 4</h3>
<div>
<p>
44</p>
<p>
455</p>
</div>
</div>
</body>
</html>