Answers for "load a css file"

CSS
3

html how to import css file

<head>
	<link rel="stylesheet" href="mystyle.css">
</head>
Posted by: Guest on May-04-2021
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