And I did a quick search on this resource and found this page;
Then I created a folder with the name of GUJ and within this folder I put three files;
One of JavaScript with the name of jquery-2.2.2.min.js and the other one with the name of jquery-ui.js
And I also put the index.html file
with these settings;
<!DOCTYPE html>
<html>
<script type="text/javascript" src="jquery-2.2.2.min.js"></script>
<script type="text/javascript" src="jquery-ui.js"></script>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script type="text/javascript">
$("#accordion").accordion({
collapsible: true
});
</script>
</head>
<body>
<div id="accordion">
<h3>First header</h3>
<div>First content panel</div>
<h3>Second header</h3>
<div>Second content panel</div>
</div>
</body>
</html>
It was to have this result;
But nothing happened.
I accept suggestions.