Answers for "where does the css go in html"

8

adding css to html

<head>
  <!-- Linking external Css document -->
  <link rel="stylesheet" href="styles.css">
  
  <!-- Writing Css inside HTML element -->
  <style>
    ...
  </style>
</head>
Posted by: Guest on October-29-2020

Code answers related to "where does the css go in html"

Browse Popular Code Answers by Language