css style for make htmt tags work code example
Example 1: where do you put style tags in html
// Style tags belong in <head>
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>