ショコラ
jQuery のライブラリを読み込むには?
「jQuery CDN」、「Google Hosted Libraries」、「JS DELIVR」等の CDN から直読み込みでキメマス。
読み込むファイルは「.min.js」か「.slim.min.js」のものです。「.slim.min.js」は AJAX やアニメーション等の機能も削除されて骨と皮になったものです。
もっさん先輩
jQuery CDN
https://releases.jquery.com/
Google Hosted Libraries
https://developers.google.com/speed/libraries/#jquery
JS DELIVR
https://www.jsdelivr.com/?query=jquery
例
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
</head>
<body>
</body>
</html>