I can't seem to get my css and js files to load on the server. Here is how my file structure looks like: GAME_Folder https://i.sstatic.net/wzfB3.png
HTML
doctype html
head
link(href='https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap' rel='stylesheet')
script(src='https://code.jquery.com/jquery-latest.min.js' type='text/javascript')
script(src='https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js')
<script type="text/javascript" src="index.js"></script>
link(rel='stylesheet' type='text/css' href='../css/style.css')
script(src='/socket.io/socket.io.js')
Server (serv.js)
https://i.sstatic.net/f72FW.jpg
I have tried various solutions found in previous stack overflow threads such as: Failed to load resource: the server responded with a status of 404 (Not Found) Failed to load resource: the server responded with a status of 404 (Not Found) css
Do you have any other suggestions?