I just added iron:router package to my meteor project and now at the end of my website it shows this
and i can't find it in my html file to delete it,
How can i remove it from my website?
It will disappear when you add any route in your JS file. Add the following empty route to your JS file and start from there.
Router.route('/', function () {
});
Also read the iron-router docs about getting started. http://iron-meteor.github.io/iron-router/