<html>
<head>
<style>
.circle {
width: 100px;
height: 100px;
border: 1px solid gray;
border-radius: 50px;
display: inline-block;
background-color: red;
}
</style>
</head>
<body>
<h2>jQuery Effects And Animation</h2>
<button id="hide-element">Hide</button>
<button id="show-element">Show</button>
<button id="slide-element">Slide</button>
<button id="fade-element">Fade</button>
<button id="animate-element">Animate</button>
<br />
<br />
<div class="circle"></div>
<script src='index.pack.js'></script>
</body>
</html>