Easy sheets in css code example
Example 1: how to write css in html
<p style="color: blue; font-size: 46px;">
Example 2: how to use css
<link rel="stylesheet" href="stylesheet.css">
<div class="mydiv"></div>
<style>
.mydiv {
background-color: /*Color*/;
color: /*Another color*/;
}
</style>