I am new to ejs and Node.js. I have a Node.js file. Whenever the localhost receives a get request, I redirect to the index.ejs file. The data is displayed in the browser, but the CSS is not loaded. Can someone help me identify the issue in this code? I have included a sample of the code below. Thanks in advance.
index.ejs
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8>
<title>Document</title>
<link ref="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<div class="jumbotron text-center">
<h1>User Authentication with Passport, Express 4 and MongoDB</h1>
<h3>Login or Register with...</h3>
<a href="/login" class="btn btn-lg btn-success">Login</a>
<a href="/register" class="btn btn-lg btn-info">Register</a>
</div>
</div>
</body>
</html>