From be51de55a23d617f9e921831323ed2e905f2de36 Mon Sep 17 00:00:00 2001 From: counterweight Date: Thu, 6 Feb 2025 19:11:41 +0100 Subject: [PATCH] change html --- index.js | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) 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, () => {