This is a snippet of my HTML where I link the .js file
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="CSS/Style.css">
<title>
Learning JavaScript
</title>
</head>
<body>
<div class="LargeTitle">
<h1>Learning JavaScript</h1>
<p class="UnderText">asap</p>
</div>
</body>
<script scr="Scripts/MainJavaScript.js"></script>
</html>
Here is a link to a picture showing the file locations File Location = https://i.sstatic.net/q1mGq.jpg
Additionally, here is the script I am using: alert("Is it working?");
I would greatly appreciate any help with this issue.