/html/styles.css code example
Example 1: how to link an css file to html
<link rel="stylesheet" href="hi.css">
Example 2: style.css in html
put in the <header> tag:
<link rel="stylesheet" href="style.css">
Example 3: css / style
<style>
h2 {
color: red;
}
</style>
<!-- all h2 elements will become red for example -->
<h2>
i am the best
</h2>
<!-- i am the best would be red