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
      • /fonts
      • /js
      • /images
      • index.html
  • index.js

how can fix this?

index.html same level assets. try this:

<link rel="stylesheet" href="assets/css/main.css" /> 

Comments

Popular posts from this blog

amazon web services - S3 Pre-signed POST validate file type? -

c# - Check Keyboard Input Winforms -