I am new to MVC, how can I add the link/script below to my project and change the styling to suit.
<link href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css"
rel="stylesheet" type="text/css">
<script type="text/javascript" src="//code.jquery.com/jquery-1.10.2.js"></script>
<script type="text/javascript" src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<script>
$(function () {
$("#accordion").accordion({
collapsible: true
});
});
</script>