Unit 2 typos - main.js included in both head section and footer

main.js is included in both the head tag and the footer section. Can we remove the one in the head tag?

<head>
    <title>My first web page for ROS!</title>
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
     crossorigin="anonymous">
​
    <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js">
    </script>
​
    <script src="main.js"></script>
</head>

And the end of index.html file like:

...
</footer>
<script src="main.js"></script>
1 Like

Hello @anandhms ,

Thanks for reporting.
I had just updated the notebook example.

Yes, you can remove the script tag from the head section.

Regards