Published
- 1 min read
how to add css to ejs file
The solution for this is noted below
how to add css to ejs file
Solution
///public->css->styles.css (create these folders and file)
app.use(express.static("public")); ///on js/server file
<link rel="stylesheet" href="css/styles.css" type="text/css"> /// on ejs file
Try other methods by searching on the site. That is if this doesn’t work