const express = require('express');
const path = require('path');
const app = express ();
app.use(express.json('public'))
app.get('/PKorn/zealtech', function(req, res) {
res.sendFile(path.join(__dirname, '/public/Ko.html'));
});
app.listen(4402);
While /PKorn displays the webpage with CSS properly applied, accessing /PKorn/zealtech results in missing CSS styling on the page.