Edit This Code:
<!DOCTYPE html>
<html>
<head>
<style>
div.ex1 {
    direction: rtl;
}

</style>
</head>
<body>

<div>Some text. Default writing direction.</div>
<div class="ex1">Some text. Right-to-left direction.</div>

</body>
</html>


Result:
Try it Yourself - © w3schools.com
Privacy Policy