I'm having trouble linking my external CSS to my HTML file. In the head of my index.html, I have this code:
<head>
<title>Twenty by HTML5 UP</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href=".../assets/css/main.css" />
</head>
This is how my file directory is structured:
/node-html
- /views
- /assets
- /css
- /main.css
- /css
- /fonts
- /js
- /images
- index.html
- /assets
- /views
- index.js
Any suggestions on how to resolve this issue?