writing css code example
Example 1: connext html file to css
<link rel="stylesheet" type="text/css" href="style.css">
Example 2: how to write css
Check this article, it's very cool: https://dev.to/devlorenzo/how-to-write-css-like-a-pro-4glj
Example 3: how to use css
<link rel="stylesheet" href="stylesheet.css">
<div class="mydiv"></div>
<style>
.mydiv {
background-color: /*Color*/;
color: /*Another color*/;
}
</style>
Example 4: how to write css
.main li, .main li a {
color: var(--primary-color);
}