Answers for "how to make external css"

13

external css

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

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

start a css file

*{
    margin: 0;
    padding: 0;
    color: unset;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    overflow-x: hidden;
}
Posted by: Guest on October-23-2020

Browse Popular Code Answers by Language