-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAccordian2.html
More file actions
42 lines (35 loc) · 1.1 KB
/
Copy pathAccordian2.html
File metadata and controls
42 lines (35 loc) · 1.1 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
<html>
<head>
<title>Accordian Examples</title>
<h1>ACCORDIAN</h1>
<link rel="stylesheet" href="jqueryui/jquery-ui.css">
<link rel="stylesheet" href="jqueryui/jquery-ui.structure.css">
<link rel="stylesheet" href="jqueryui/jquery-ui.theme.css">
</head>
<body>
<h2>Examples</h2>
<div id="div1">
<h3>JAVASCRIPT</h3>
<p>javascript is a good way in web development</p>
<h3>JAVA</h3>
<p>java supports oops</p>
<h3>PYTHON</h3>
<p>python becoming very famoues arrounf the world now</p>
</div>
</body>
<script
src="https://code.jquery.com/jquery-3.5.0.js"
integrity="sha256-r/AaFHrszJtwpe+tHyNi/XCfMxYpbsRg2Uqn0x3s2zc="
crossorigin="anonymous">
</script>
<script src="jqueryui/jquery-ui.js"></script>
<script type="text/javascript">
$("#div1").accordion({
collapsible :true,
event :"click",
animate :5000,
active :1,
heightStyle :true,
})
</script>
</html>