css html code code example
Example 1: how to link css to html
<link rel="stylesheet" href="file_name.css">
Example 2: css in html
<!-- EXAMPLE -->
<div class="your_class" style="display:none">
<!--[SYNTAX: style="<CSS-code>"] -->
Example 3: how to css html
<html>
<head>
<style>
body{
direction:rtl;
}
</style>
</head>
<body>
</body>
</html>