-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAccordian.html
More file actions
36 lines (29 loc) · 1.04 KB
/
Copy pathAccordian.html
File metadata and controls
36 lines (29 loc) · 1.04 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
<html>
<head>
<title>ACCORDIAN IN J QUERY</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 language contains many functions to help the programmer</p>
<h3>JAVA</h3>
<p>javascript is a language help oops</p>
<h3>Python</h3>
<p>Python is a language contains many functions to help the programmer</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()
</script>
</html>