JQuery Basic

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>JQuery - Basic</title>

    <link rel="stylesheet" href="" rel="stylesheet">

    <!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> -->
    <script src="https://code.jquery.com/jquery-latest.min.js"></script>
    
    
    <style>
    
    </style>

    <script src="">
        
    </script>
    
    <script>        
        $(document).ready(function()
        {
            alert('test');
        });
    </script>
</head>
<body>

</body>
</html>

Comments