diff --git a/index.js b/index.js index 461f3c5..136667e 100644 --- a/index.js +++ b/index.js @@ -3,7 +3,20 @@ const app = express(); const port = 3000; app.get('/', (req, res) => { - res.send("Hello World! We're live"); + res.send(` + + + + Hello World + + + + +

Hello World! We're live

+

Now this is some production grade stuff, baby!

+ + + `); }); app.listen(port, () => {