JQuery does not work. I can not connect it. And I do not understand what could be the problem. After all, the files are connected in the correct order. And the paths are correct.
<script type="text/javascript" src="jquery-3.3.1.min.js"></script> <script type="text/javascript"> alert("Hello!"); </script> Normal js script type alert triggered. 
But when trying to use the library does not respond
<script type="text/javascript"> $(.block).on('click', function(event) { event.preventDefault(); alert("Hello"); });; </script> 