xxxxxxxxxx
<head>
<!-- Linking external Css document -->
<link rel="stylesheet" href="styles.css">
<!-- Writing Css inside HTML element -->
<style>
</style>
</head>
xxxxxxxxxx
<link rel="stylesheet" href="stylesheet.css">
<div class="mydiv"></div>
<style>
.mydiv {
background-color: /*Color*/;
color: /*Another color*/;
}
</style>
xxxxxxxxxx
<html>
<head>
<style>
body{
direction:rtl;
}
</style>
</head>
<body>
</body>
</html>