html using css code example

Example 1: how to link css to html

<link rel="stylesheet" href="styles.css">

Example 2: how to link css to html

<link rel="stylesheet" href="file_name.css">

Example 3: css in html

<!-- EXAMPLE -->
<div class="your_class" style="display:none">

<!--[SYNTAX: style="<CSS-code>"] -->

Example 4: how to use css

<link rel="stylesheet" href="stylesheet.css">
<div class="mydiv"></div>
<style>
.mydiv {
background-color: /*Color*/;
color: /*Another color*/;
}
</style>

Tags:

Css Example