Level 11>lesson 8
<!doctype html>
<html>
<head>
<title>Using External JS Library</title>
</head>
<body>
<div id="myDiv">Hello Studytonight!</div>
<script src="#given url"></script>
<script>
// change text of div
$("#myDiv").text("Welcome to Studytonight!");
</script>
</body>
</html>