Answers for "add in css file"

18

add css to an html file

<link rel=“stylesheet” type=“text/css” href=“style.css” />
Posted by: Guest on March-14-2020
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

Browse Popular Code Answers by Language