Answers for "how to link the css file to the index file"

0

link a css file

<!DOCTYPE html>
  <html>
    <head>
      <link rel="stylesheet" src="style.css">
    </head>
    <body>
    
    </body>
</html>
Posted by: Guest on December-22-2021
2

attach css file to html

<head>
     <link rel="stylesheet" href="[name of css file]"
</head>
Posted by: Guest on October-30-2021

Code answers related to "how to link the css file to the index file"

Browse Popular Code Answers by Language