javascript - CSS isn't linking to HTML -
i'm not able link external css html. have code in head of index.html file:
<head> <title>twenty 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>
my file directory looks this:
/node-html
- /views
- /assets
- /css
- /main.css
- /css
- /fonts
- /js
- /images
- index.html
- /assets
- /views
- index.js
how can fix this?
index.html same level assets. try this:
<link rel="stylesheet" href="assets/css/main.css" />
Comments
Post a Comment