load a css file code example
Example 1: html how to import css file
<head>
<link rel="stylesheet" href="mystyle.css">
</head>
Example 2: start a css file
*{
margin: 0;
padding: 0;
color: unset;
box-sizing: border-box;
text-decoration: none;
outline: none;
overflow-x: hidden;
}