Connect the jQuery library to HTML

Category:

I have already explained what the jQuery library is. It remains to tell how to connect it to the site (HTML)

and show where it can be used.
So how do you link the jQuery library to your site? There are two connection options: connecting to the file directly (via the official website) or downloading the file to your server. Now we will consider these two methods.

50x50px
<!DOCTYPE html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title></title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
</head>
<body>
</body>
</html>