Answers for "how to give css 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
0

how to like css to html

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Title</title>
    <link rel="stylesheet" type="text/css" href="path of your file" />
  </head>
</html>
Posted by: Guest on July-18-2020

Code answers related to "how to give css in html"

Browse Popular Code Answers by Language