where to write css in html code example
Example 1: how to add css to html
<link rel="stylesheet" href="hi.css">
Example 2: how to css html
<html>
<head>
<style>
body{
direction:rtl;
}
</style>
</head>
<body>
</body>
</html>
<link rel="stylesheet" href="hi.css">
<html>
<head>
<style>
body{
direction:rtl;
}
</style>
</head>
<body>
</body>
</html>