Answers for "link csss 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

Browse Popular Code Answers by Language