1<link rel="stylesheet" href="stylesheet.css">
2<div class="mydiv"></div>
3<style>
4.mydiv {
5background-color: /*Color*/;
6color: /*Another color*/;
7}
8</style>
1<!-- There are 3 ways to do this-->
2
3<!-- #1: Inline CSS-->
4<h1 style="color: red;">Red Heading</h1>
5
6<!-- #2 Element CSS-->
7<style>
8 h1 {
9 color: red;
10 }
11</style>
12<h1>Red Heading</h1>
13
14<!-- #3 Stylesheet CSS-->
15<link rel="stylesheet" href="[stylesheet link]">
1<html>
2<head>
3<style>
4body{
5 direction:rtl;
6}
7 </style>
8 </head>
9 <body>
10 </body>
11</html>