Looks like something is wrong with my code? HTML won't run it. When I click the button element in HTML the font size does not change. What am I missing?
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js">
$(document).ready(function() {
$("button").css("font-size", "5em");
});
</script>