Answers for "how to make a html stylesheet"

15

add css to an html file

<link rel=“stylesheet” type=“text/css” href=“style.css” />
Posted by: Guest on March-14-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

Code answers related to "how to make a html stylesheet"

Browse Popular Code Answers by Language