Answers for "how will you link an external css file style.css in your html file?"

136

how to link css to html

<link rel="stylesheet" href="styles.css">
Posted by: Guest on November-28-2019
15

external css

<html>
  <head>
    <link rel="stylesheet" type="text/css" href="mystyle.css"></link>
  </head>

  <body>
Posted by: Guest on January-06-2020

Code answers related to "how will you link an external css file style.css in your html file?"

Browse Popular Code Answers by Language