Need Help (Beginner)

Need Help (Beginner)

Hello my name is Burhan Afridi and i am new to web programming

I learn HTML5 and CCS3 and now i start learning JQuery

i write the first program and its working when i use internal jquery script but when i use as external its not working please help me the page code is below

Index.html

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<script src="jquery-1.11.1-uncompress.js" type="text/javascript"></script> 
<script src="myscript.js"></script>
</head>

<body>
<p> This is a test line</p>
<!-- <script>
$(document).ready(function() {
    $("p").hide(2000).show(2000).hide(2000).show(2000).hide(2000).show(2000).hide(2000).show(2000).hide(2000).show(2000);
});

</script> -->
</body>
</html>



myscript.js

// JavaScript Document

<script>
$(document).ready(function() {
    $("p").hide(2000).show(2000).hide(2000).show(2000).hide(2000).show(2000).hide(2000).show(2000).hide(2000).show(2000)
});

</script>