Answers for "how to link css to html stack overflow"

CSS
0

how to link css to html stack overflow

h1, p {
    font-family: Sans-Serif ;
}
Posted by: Guest on October-11-2021
0

how to link css to html stack overflow

<!DOCTYPE HTML>
<HTML>
 <body>
     <link rel="stylesheet" type="text/css" href="mine.css">
         <h1>test</h1>
         <p>test</p>
   </body>
</HTML>
Posted by: Guest on October-11-2021

Browse Popular Code Answers by Language