The expected result is that when the page loads, the progress bar loads like this: https://i.stack.imgur.com/xThgR.png
However the result I get is a progress bar with no progress, like this: https://i.stack.imgur.com/vH9oh.png
The link for jQuery and semantic/fomantic UI libararies is listed below:
<link rel="stylesheet" type="text/css" href="semantic/dist/semantic.min.css">
<script
src="https://code.jquery.com/jquery-3.1.1.min.js"
integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
crossorigin="anonymous"></script>
<script src="semantic/dist/semantic.min.js"></script>
<script>
$('#progressHTML').progress();
</script>
The actual area in the website that has the progress bar is below:
<div id="skills" class="skills-containter">
<div class="skills-text-containter">
<h1 class="ui header skills-header">Skills</h1>
<div class="ui blue progress" data-percent="74" id="progressHTML">
<div class="bar"></div>
<div class="label">HTML</div>
</div>
<p class="ui paragraph skills-paragraph">no</p>
</div>
</div>
Any help would be appreciated. :)