jquery how to use in html code example
Example 1: how to add jquery to html
<!--You can insert Jquery into HTML with the <script> tag.-->
<head>
<script type = 'text/javascript' src = 'https://code.jquery.com/jquery-3.3.1.js'></script>
</head>
Example 2: how to use jQuery
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>jQuery</title>
</head>
<body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script>
//jQuery code
</script>
</body>
</html>