How do I link to other pages from index.html

If the pages are under public/NewPage.html and you have express serving static assets with app.use(express.static('public')); then it should “just work”. If your pages are in views or another directory then you’ll need to explicitly create routes for them.

I hope this clears it up :slight_smile:

2 Likes