1<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
1You have quite a few options
2
3You can get the whole source
4Uncompressed dev: https://code.jquery.com/jquery-3.4.1.js
5Compressed production: https://code.jquery.com/jquery-3.4.1.min.js
6You the simply save the code into a Javascript file and include it in the usual way
7<script type="text/javascript" src="jquery.js"></script>
8
9Or point to a CDN, such as Google's
10<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
11
12You can get it using NPM, Yarn or Bower
13npm install jquery
14yarn add jquery
15bower install jquery
16
17You can even get the latest builds from GitHub
18git clone git://github.com/jquery/jquery.git
1<!-- USE THIS ON YOUR CODE: -->
2<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>