The goals 💪🏻Sending HTML Files as Responses ✌🏻Serving Static Files 👍🏻Working With Dynamic Templates A project we are gonna build through this section res.send vs res.sendFile You can't use both res.send() and res.sendFile() in the same route and method because every request has only one response and each one is called first, that's your response. You're trying to pass a filename to render, but i..