how do i use css in html code example
Example 1: how to add css to html
<link rel="stylesheet" href="hi.css">
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>